书籍列表接口新增参数

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,23 @@
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// AdEventLogs is the golang structure for table ad_event_logs.
type AdEventLogs struct {
Id int64 `json:"id" orm:"id" description:"广告事件ID"` // 广告事件ID
UserId int64 `json:"userId" orm:"user_id" description:"用户ID"` // 用户ID
AdsPlatId int `json:"adsPlatId" orm:"ads_plat_id" description:"平台ID1-META2-ADMOB"` // 平台ID1-META2-ADMOB
AdsCategoryId int `json:"adsCategoryId" orm:"ads_category_id" description:"广告类型1-横幅2-插页3-激励插页4-激励5-原生6-开屏"` // 广告类型1-横幅2-插页3-激励插页4-激励5-原生6-开屏
AppPackage string `json:"appPackage" orm:"app_package" description:"App包名"` // App包名
Status int `json:"status" orm:"status" description:"广告状态1-拉取失败2-拉取成功3-显示失败4-显示成功5-未观看完成6-观看完成7-未点击8-已点击9-未下载10-已下载"` // 广告状态1-拉取失败2-拉取成功3-显示失败4-显示成功5-未观看完成6-观看完成7-未点击8-已点击9-未下载10-已下载
StatusDesc string `json:"statusDesc" orm:"status_desc" description:"状态描述"` // 状态描述
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"创建时间"` // 创建时间
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:"更新时间"` // 更新时间
DeletedAt *gtime.Time `json:"deletedAt" orm:"deleted_at" description:"软删除时间戳"` // 软删除时间戳
}