一物一码
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

incentive_ad_total.go 390 B

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