调整奖励类型和奖励
This commit is contained in:
@ -85,3 +85,18 @@ type GetTaskReq struct {
|
||||
type GetTaskRes struct {
|
||||
Success bool `json:"success"`
|
||||
}
|
||||
|
||||
type GetUserTaskRecordsListReq struct {
|
||||
g.Meta `path:"/task/records" method:"get" tags:"Task" summary:"(PC)用户任务记录列表"`
|
||||
TaskId string `json:"taskId" dc:"任务 id"`
|
||||
StoreId int `json:"storeId" dc:"门店 id"`
|
||||
NetbarAccount string `json:"netbarAccount" dc:"网关账号"`
|
||||
Page int `json:"page" dc:"页数"`
|
||||
Size int `json:"size" dc:"条数"`
|
||||
StartTime int32 `json:"startTime" dc:"开始时间"`
|
||||
EndTime int32 `json:"endTime" dc:"结束时间"`
|
||||
}
|
||||
type GetUserTaskRecordsListRes struct {
|
||||
List interface{} `json:"list"`
|
||||
Total int `json:"total"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user