新增从腾讯获取任务列表

This commit is contained in:
chy
2025-06-10 14:48:10 +08:00
parent 4f9dc24100
commit a3c6b20a04
10 changed files with 239 additions and 0 deletions

31
internal/model/task.go Normal file
View 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"`
}