面包店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
567 B

  1. package model
  2. type NewcomersQualification struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(10)"`
  4. Uid int `json:"uid" xorm:"not null default 0 comment('用户ID') INT(10)"`
  5. RemainTimes int `json:"remain_times" xorm:"not null default 0 comment('剩余次数') INT(11)"`
  6. CumulativeTimes int `json:"cumulative_times" xorm:"not null default 0 comment('累计次数') INT(11)"`
  7. CreatedAt int `json:"created_at" xorm:"not null default 0 INT(11)"`
  8. UpdatedAt int `json:"updated_at" xorm:"not null default 0 INT(11)"`
  9. }