修改未登录任务列表查询

This commit is contained in:
chy
2025-06-19 09:40:11 +08:00
parent 3c18686bf9
commit fc95fe5cfd
9 changed files with 50 additions and 17 deletions

View File

@ -13,7 +13,7 @@ import (
type StoreTaskRewards struct {
g.Meta `orm:"table:store_task_rewards, do:true"`
Id interface{} // 任务奖励关联ID
TaskId interface{} // 门店任务ID
TaskId interface{} // 腾讯任务ID
RewardId interface{} // 奖励ID
StoreId interface{} // 门店ID
CreatedAt *gtime.Time // 创建时间

View File

@ -14,7 +14,7 @@ type UserTasks struct {
g.Meta `orm:"table:user_tasks, do:true"`
Id interface{} // 用户任务唯一标识符
UserId interface{} // 用户ID
TaskId interface{} // 任务ID
TaskId interface{} // 腾讯任务ID
Status interface{} // 任务状态1=进行中2=已完成中3=未完成
SerialNumber interface{} // 流水号,确保用户任务唯一性
CreatedAt *gtime.Time // 创建时间