package models import ( "time" ) type TDmXl struct { XlId string `xorm:"not null pk comment('学历码') CHAR(2)"` XlName string `xorm:"not null comment('学历名称') VARCHAR(64)"` UpdateTs time.Time `xorm:"not null default 'current_timestamp()' TIMESTAMP"` IdInt int64 `xorm:"not null autoincr comment('整数主键') unique INT(11)"` }