Files
arenax-server/internal/model/do/user_tasks.go

25 lines
976 B
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=已完成4=已取消
SerialNumber interface{} // 流水号,确保用户任务唯一性
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
CompletedAt *gtime.Time // 任务完成时间
DeletedAt *gtime.Time // 软删除时间戳
}