Files
arenax-server/internal/model/do/user_tasks.go
2025-07-08 11:23:36 +08:00

30 lines
1.2 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// 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{} // 用户完成次数
}