修改查询已完成任务列表

This commit is contained in:
chy
2025-07-05 15:36:07 +08:00
parent 69f46821e7
commit 40686bbd29

View File

@ -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"`
} }