// ================================================================================= // 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" ) // TaskLogs is the golang structure of table task_logs for DAO operations like Where/Data. type TaskLogs struct { g.Meta `orm:"table:task_logs, do:true"` Id interface{} // 任务日志ID TaskId interface{} // 任务ID,关联 tasks.id UserId interface{} // 用户ID,关联 users.id RewardPoints interface{} // 本次任务获得的积分 ActionTime *gtime.Time // 操作时间(如完成时间) Status interface{} // 日志状态:1=有效,2=无效 Extra interface{} // 扩展信息,例如来源、IP 等 CreatedAt *gtime.Time // 创建时间 }