书籍列表接口新增参数
This commit is contained in:
21
internal/model/do/ad_event_transitions.go
Normal file
21
internal/model/do/ad_event_transitions.go
Normal 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 // 软删除时间戳
|
||||
}
|
||||
Reference in New Issue
Block a user