修改用户信息,用户未登录,登录查询游戏任务功能

This commit is contained in:
chy
2025-06-16 16:58:10 +08:00
parent fa9d07ac7d
commit e05d1b43a8
10 changed files with 121 additions and 63 deletions

View File

@ -1,12 +1,14 @@
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(可选)
NetBarAccount string `json:"netbar_account"` //网关账号
//Page int `json:"page"` // 分页索引
//Size int `json:"size"` // 分页大小
Pageidx string `json:"pageidx"` // 分页索引
Num int `json:"num"` //
Gid int `json:"gid"` // 游戏唯一id
Source string `json:"source"` // 不能为空
BrandId string `json:"brand_id"` // 品牌id(可选)
}
type GetNonLoginTaskListOut struct {
@ -17,11 +19,13 @@ type GetNonLoginTaskListOut struct {
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(可选)
//Page int `json:"page"` // 分页索引
//Size int `json:"size"` // 分页大小
Pageidx string `json:"pageidx"` // 分页索引
Num int `json:"num"` //
Gid int `json:"gid"` // 游戏唯一id
Source string `json:"source"` // 不能为空
BrandId string `json:"brandId"` // 品牌id(可选)
}
type GetLoginTaskListOut struct {