修改查询已完成任务列表
This commit is contained in:
@ -55,10 +55,11 @@ type UserTaskRecord struct {
|
|||||||
TaskId string `json:"taskId" orm:"task_id" description:"腾讯任务ID"` // 腾讯任务ID
|
TaskId string `json:"taskId" orm:"task_id" description:"腾讯任务ID"` // 腾讯任务ID
|
||||||
//Status int `json:"status" orm:"status" description:"任务状态:1=进行中,2=已完成中,3=未完成"` // 任务状态:1=进行中(显示领取按钮),2=已完成
|
//Status int `json:"status" orm:"status" description:"任务状态:1=进行中,2=已完成中,3=未完成"` // 任务状态:1=进行中(显示领取按钮),2=已完成
|
||||||
//StoreId int64 `json:"storeId" orm:"store_id" description:"门店 id"` // 门店 id
|
//StoreId int64 `json:"storeId" orm:"store_id" description:"门店 id"` // 门店 id
|
||||||
TaskName string `json:"taskName" orm:"task_name" description:"任务名称"` // 任务名称
|
TaskName string `json:"taskName" orm:"task_name" description:"任务名称"` // 任务名称
|
||||||
GameId int64 `json:"gameId" orm:"game_id" description:"游戏 id"` // 游戏 id
|
GameId int64 `json:"gameId" orm:"game_id" description:"游戏 id"` // 游戏 id
|
||||||
User UserInfo `json:"user,omitempty" orm:"with:id=user_id"`
|
User UserInfo `json:"user,omitempty" orm:"with:id=user_id"`
|
||||||
Game GameInfo `json:"game,omitempty" orm:"with:game_id=game_id"`
|
Game GameInfo `json:"game,omitempty" orm:"with:game_id=game_id"`
|
||||||
|
CompletedAt *gtime.Time `json:"completedAt" orm:"completed_at" description:"任务完成时间"` // 任务完成时间
|
||||||
// Store Store `json:"store" orm:"with:id=store_id"`
|
// Store Store `json:"store" orm:"with:id=store_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user