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.
|
123456 |
- package model
-
- type SysInviteCodes struct {
- Code string `json:"code" xorm:"not null pk default '0' comment('邀请码') VARCHAR(10)"`
- IsUsed int `json:"is_used" xorm:"not null default 0 comment('是否被使用') TINYINT(1)"`
- }
|