package Model type TDmSubject struct { SubjectId string `xorm:"default 'NULL' CHAR(2)"` SubjectName string `xorm:"default '''' VARCHAR(16)"` BUse int `xorm:"default NULL comment('是否可用 0:不可用 1:可用') INT(11)"` SortId int `xorm:"default NULL comment('排序号') INT(11)"` }