32 lines
1.1 KiB
Go
32 lines
1.1 KiB
Go
package model
|
|
|
|
type GetNonLoginTaskListIn struct {
|
|
NetBarAccount string `json:"netBarAccount"` //网关账号
|
|
Page int `json:"page"` // 分页索引
|
|
Size int `json:"size"` // 分页大小
|
|
Gid int `json:"gid"` // 游戏唯一id
|
|
Source string `json:"source"` // 不能为空
|
|
BrandId string `json:"brandId"` // 品牌id(可选)
|
|
}
|
|
|
|
type GetNonLoginTaskListOut struct {
|
|
// List interface{} `json:"list"`
|
|
// Total int `json:"total"`
|
|
Data interface{} `json:"data"`
|
|
}
|
|
|
|
type GetLoginTaskListIn struct {
|
|
NetBarAccount string `json:"netBarAccount"` //网关账号
|
|
Page int `json:"page"` // 分页索引
|
|
Size int `json:"size"` // 分页大小
|
|
Gid int `json:"gid"` // 游戏唯一id
|
|
Source string `json:"source"` // 不能为空
|
|
BrandId string `json:"brandId"` // 品牌id(可选)
|
|
}
|
|
|
|
type GetLoginTaskListOut struct {
|
|
// List interface{} `json:"list"`
|
|
// Total int `json:"total"`
|
|
Data interface{} `json:"data"`
|
|
}
|