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

24 lines
2.5 KiB
Go
Raw Permalink 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 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:"软删除时间戳"` // 软删除时间戳
}