This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
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)"`
}