面包店
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

newcomers_qualification.go 567 B

hace 9 meses
12345678910
  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. }