书籍列表接口新增参数

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,21 @@
// =================================================================================
// 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"
)
// AdEventTransitions is the golang structure of table ad_event_transitions for DAO operations like Where/Data.
type AdEventTransitions struct {
g.Meta `orm:"table:ad_event_transitions, do:true"`
Id interface{} // 状态流转记录ID
EventId interface{} // 所属广告事件ID关联ad_event_logs.id
FromStatus interface{} // 原状态(首次记录为空)
ToStatus interface{} // 目标状态
CreatedAt *gtime.Time // 状态变更时间
DeletedAt *gtime.Time // 软删除时间戳
}