package models import ( "time" ) type TDmSchoollevel struct { LevelId int64 `xorm:"not null pk comment('隶属关系id') INT(11)"` LevelName string `xorm:"not null comment('隶属关系名称') VARCHAR(255)"` UpdateTs time.Time `xorm:"not null default 'current_timestamp()' comment('更新时间戳') DATETIME"` }