You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
937 B
47 lines
937 B
package backend |
|
|
|
import "server/modules/backend/values" |
|
|
|
// swagger:route GET /common/productList common idOfProductList |
|
// 充值列表 |
|
// Responses: |
|
// 200:ProductListResp |
|
|
|
// swagger:response ProductListResp |
|
type ProductListResp struct { |
|
// in:body |
|
Body values.ProductListResp |
|
} |
|
|
|
// swagger:route GET /common/gameList common idOfGameList |
|
// 游戏列表 |
|
// Responses: |
|
// 200:GameListResp |
|
|
|
// swagger:response GameListResp |
|
type GameListResp struct { |
|
// in:body |
|
Body values.GamesListResp |
|
} |
|
|
|
// swagger:route GET /common/channelList common idOfChannelList |
|
// 渠道列表 |
|
// Responses: |
|
// 200:ChannelListResp |
|
|
|
// swagger:response ChannelListResp |
|
type ChannelListResp struct { |
|
// in:body |
|
Body values.ChannelListResp |
|
} |
|
|
|
// swagger:route GET /common/userInfo common idOfUserInfo |
|
// 用户信息 |
|
// Responses: |
|
// 200:UserInfoResp |
|
|
|
// swagger:response UserInfoResp |
|
type UserInfoResp struct { |
|
// in:body |
|
Body values.UserInfoResp |
|
}
|
|
|