面包店
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

11 строки
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. }