Files
novel_server/internal/model/do/task_logs.go

24 lines
940 B
Go
Raw Permalink 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"
)
// 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 // 创建时间
}