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.

12 lines
280 B

package models
import (
"time"
)
type TDmXb struct {
XbId int64 `xorm:"not null pk autoincr comment('性别ID') INT(11)"`
XbName string `xorm:"not null comment('性别名称') VARCHAR(2)"`
UpdateTs time.Time `xorm:"default 'current_timestamp()' TIMESTAMP"`
}