书籍列表接口新增参数
This commit is contained in:
23
internal/model/do/task_logs.go
Normal file
23
internal/model/do/task_logs.go
Normal file
@ -0,0 +1,23 @@
|
||||
// =================================================================================
|
||||
// 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 // 创建时间
|
||||
}
|
||||
Reference in New Issue
Block a user