书籍列表接口新增参数

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,25 @@
// =================================================================================
// 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 // 软删除时间戳
}