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"` }