// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package do import ( "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/os/gtime" ) // UserTasks is the golang structure of table user_tasks for DAO operations like Where/Data. type UserTasks struct { g.Meta `orm:"table:user_tasks, do:true"` Id interface{} // 用户任务唯一标识符 UserId interface{} // 用户ID TaskId interface{} // 腾讯任务ID Status interface{} // 任务状态:1=进行中,2=已完成,3=待领取奖励 SerialNumber interface{} // 流水号,确保用户任务唯一性 CreatedAt *gtime.Time // 创建时间 UpdatedAt *gtime.Time // 更新时间 CompletedAt *gtime.Time // 任务完成时间 DeletedAt *gtime.Time // 软删除时间戳 StoreId interface{} // 门店 id TaskName interface{} // 任务名称 GameId interface{} // 游戏 id TaskType interface{} // 1: 每日任务 3: 周期任务 UserTimes interface{} // 用户完成次数 BindType interface{} // 当前账号类型 }