修改奖励物品详情查询
This commit is contained in:
@ -100,6 +100,12 @@ type RewardCallbackIn struct {
|
||||
TaskId string
|
||||
}
|
||||
|
||||
type RewardCallbackOut struct {
|
||||
List interface{} `json:"list"`
|
||||
Result int64 `json:"result"`
|
||||
Water Water `json:"water"`
|
||||
}
|
||||
|
||||
type GetRewardIn struct {
|
||||
AreaId int
|
||||
GameId int
|
||||
@ -117,12 +123,6 @@ type GetRewardOut struct {
|
||||
type Water struct {
|
||||
}
|
||||
|
||||
type RewardCallbackOut struct {
|
||||
List interface{} `json:"list"`
|
||||
Result int64 `json:"result"`
|
||||
Water Water `json:"water"`
|
||||
}
|
||||
|
||||
type GetGoodsListIn struct {
|
||||
Appfilter string `json:"appfilter"`
|
||||
BigTime int64 `json:"bigTime"`
|
||||
@ -146,7 +146,22 @@ type GetGoodsGetIn struct {
|
||||
AreaId int64 `json:"areaId" dc:"大区Id"`
|
||||
GameId int64 `json:"gid" dc:"游戏Id"`
|
||||
RoleIdx string `json:"roleIdx" dc:"角色索引"`
|
||||
PopenId string `json:"popenId" dc:"用户openId"`
|
||||
}
|
||||
type GoodsGetOut struct {
|
||||
Water Water `json:"water" dc:"用户领取物品流水记录"`
|
||||
}
|
||||
|
||||
type GetGoodsDetailsIn struct {
|
||||
WinningTime int64 `json:"winningtime" dc:"用户领取礼包时间"`
|
||||
OrderId string `json:"orderid" dc:"用户领取流水订单id"`
|
||||
IsActInfo int64 `json:"isActinfo" dc:"是否需要活动相关信息 0:默认需要 1:不需要"`
|
||||
IsDocument int64 `json:"isDocument" dc:"是否需要文档信息 0:默认需要 1:不需要"`
|
||||
IsDetail int64 `json:"isDetail" dc:"是否需要物品详情 0:默认需要 1:不需要"`
|
||||
PopenId string `json:"popenId" dc:"用户popenId"`
|
||||
Gid int `json:"gid" dc:"游戏Id"`
|
||||
}
|
||||
|
||||
type GetGoodsDetailsOut struct {
|
||||
Goods Water `json:"goods" dc:"物品详情"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user