13 lines
409 B
Go
13 lines
409 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"`
|
|
Status string `orm:"status" json:"status"`
|
|
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
|
|
}
|