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 }