书籍列表接口新增参数

This commit is contained in:
2025-08-13 15:19:42 +08:00
parent 6ccc87f2bf
commit 8afe651c64
201 changed files with 6987 additions and 1066 deletions

View 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 // 创建时间
}