package models import ( "time" ) type TDmSchoolproperty struct { PropertyId int64 `xorm:"not null pk comment('学校办别 : 1:公办,2:民办') INT(11)"` PropertyName string `xorm:"not null comment('学校办别名称') VARCHAR(255)"` UpdateTs time.Time `xorm:"not null default 'current_timestamp()' DATETIME"` }