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

26 lines
1.2 KiB
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"
)
// 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{} // 平台ID1-META2-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 // 软删除时间戳
}