面包店
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

11 wiersze
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. }