Files
slogan/server/styleagent/model/entity/ad_reward_log.go
T
admin a6de9ebd12 Add 'server/' from commit 'e64421295fff83acbb6d6ab3d3b27f3ef8368f00'
git-subtree-dir: server
git-subtree-mainline: c4e617ada7
git-subtree-split: e64421295f
2026-08-04 15:02:35 +08:00

14 lines
457 B
Go

package entity
import "github.com/gogf/gf/v2/os/gtime"
type AdRewardLog struct {
Id int64 `orm:"id" json:"id"`
UserId int64 `orm:"user_id" json:"user_id"`
AdType string `orm:"ad_type" json:"ad_type"`
RewardKey string `orm:"reward_key" json:"reward_key"`
Slot int `orm:"slot" json:"slot"`
Status string `orm:"status" json:"status"`
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
}