package models type TBaseSample struct { Id int64 `xorm:"not null pk autoincr comment('主键') INT(11)"` Name string `xorm:"not null comment('姓名') VARCHAR(255)"` Xb string `xorm:"not null comment('性别') VARCHAR(255)"` BUse int64 `xorm:"not null default 1 comment('启用状态') INT(255)"` SortId int64 `xorm:"not null comment('排序号') INT(11)"` }