面包店
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

newcomers_qualification.go 567 B

há 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. }