新增从腾讯获取任务列表
This commit is contained in:
31
internal/model/task.go
Normal file
31
internal/model/task.go
Normal file
@ -0,0 +1,31 @@
|
||||
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"`
|
||||
}
|
||||
Reference in New Issue
Block a user