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.
10 lines
387 B
10 lines
387 B
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)"`
|
|
}
|