|
123456789 |
- package model
-
- type IncentiveAdTotal struct {
- Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
- AdId int `json:"ad_id" xorm:"default 0 comment('广告id') INT(11)"`
- Count int `json:"count" xorm:"default 0 comment('观看数量') INT(11)"`
- Time int `json:"time" xorm:"default 0 comment('时间') INT(11)"`
- Uid int `json:"uid" xorm:"default 0 comment('用户id') INT(11)"`
- }
|