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

22 lines
846 B
Go
Raw 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"
)
// 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 // 软删除时间戳
}