修改查询已完成任务列表

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

View File

@ -59,6 +59,7 @@ type UserTaskRecord struct {
GameId int64 `json:"gameId" orm:"game_id" description:"游戏 id"` // 游戏 id
User UserInfo `json:"user,omitempty" orm:"with:id=user_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"`
}