新增游戏人生领取奖励相关接口
This commit is contained in:
@ -90,3 +90,47 @@ type RewardListOut struct {
|
||||
List []Reward
|
||||
Total int
|
||||
}
|
||||
|
||||
// RewardCallbackIn 任务奖励领取回调入参
|
||||
type RewardCallbackIn struct {
|
||||
AreaId int64
|
||||
GameId int64
|
||||
RewradTypeId []int64
|
||||
RoleIdx string
|
||||
TaskId int64
|
||||
}
|
||||
|
||||
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"`
|
||||
Pageidx string `json:"pageidx"`
|
||||
Num int64 `json:"num"`
|
||||
OrderType string `json:"orderType"`
|
||||
OrderbyDesc int64 `json:"orderbDesc"`
|
||||
Goodsstatus int64 `json:"Goodsstatus"`
|
||||
}
|
||||
|
||||
type GetGoodsListOut struct {
|
||||
List interface{} `json:"list"`
|
||||
Pageidx string `json:"pageidx"`
|
||||
Total int64 `json:"total"`
|
||||
}
|
||||
|
||||
type GetGoodsGetIn struct {
|
||||
Water Water `json:"water" dc:"物品流水,从背包列表获取的water透传回来(water类型参考GetGift接口的water结构)"`
|
||||
AreaId int64 `json:"areaId" dc:"大区Id"`
|
||||
GameId int64 `json:"gid" dc:"游戏Id"`
|
||||
RoleIdx string `json:"roleIdx" dc:"角色索引"`
|
||||
}
|
||||
type GoodsGetOut struct {
|
||||
Water Water `json:"water" dc:"用户领取物品流水记录"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user