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.

9 lines
394 B

package models
type BotCountry struct {
Code string `xorm:"not null default '' comment('国家码') VARCHAR(10)"`
Id int `xorm:"not null pk autoincr INT"`
NameCn string `xorm:"not null default '' comment('中文名称') VARCHAR(50)"`
NameEn string `xorm:"not null default '' comment('英文名称') VARCHAR(50)"`
Sort int `xorm:"not null default 1 comment('排序') INT"`
}