一物一码
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.
 
 
 
 
 
 

7 regels
235 B

  1. package model
  2. type SysInviteCodes struct {
  3. Code string `json:"code" xorm:"not null pk default '0' comment('邀请码') VARCHAR(10)"`
  4. IsUsed int `json:"is_used" xorm:"not null default 0 comment('是否被使用') TINYINT(1)"`
  5. }