26 lines
1.2 KiB
Go
26 lines
1.2 KiB
Go
// =================================================================================
|
||
// 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"
|
||
)
|
||
|
||
// AdEventLogs is the golang structure of table ad_event_logs for DAO operations like Where/Data.
|
||
type AdEventLogs struct {
|
||
g.Meta `orm:"table:ad_event_logs, do:true"`
|
||
Id interface{} // 广告事件ID
|
||
UserId interface{} // 用户ID
|
||
AdsPlatId interface{} // 平台ID:1-META,2-ADMOB
|
||
AdsCategoryId interface{} // 广告类型:1-横幅,2-插页,3-激励插页,4-激励,5-原生,6-开屏
|
||
AppPackage interface{} // App包名
|
||
Status interface{} // 广告状态:1-拉取失败,2-拉取成功,3-显示失败,4-显示成功,5-未观看完成,6-观看完成,7-未点击,8-已点击,9-未下载,10-已下载
|
||
StatusDesc interface{} // 状态描述
|
||
CreatedAt *gtime.Time // 创建时间
|
||
UpdatedAt *gtime.Time // 更新时间
|
||
DeletedAt *gtime.Time // 软删除时间戳
|
||
}
|