package models type TSysDict struct { DictId int32 `xorm:"not null pk autoincr comment('主键ID') INT(11)"` DictKind string `xorm:"default 'NULL' comment('字典分类') index index(dict_kind_2) index(dict_kind_3) VARCHAR(64)"` DictCode string `xorm:"default 'NULL' comment('字典编码') index(dict_kind_2) CHAR(4)"` DictValue string `xorm:"default 'NULL' comment('字典值') VARCHAR(128)"` DictRemark string `xorm:"default 'NULL' comment('字典备注') VARCHAR(128)"` DictParent string `xorm:"default 'NULL' comment('上级字典ID') index(dict_kind_3) CHAR(2)"` SortId int32 `xorm:"default NULL comment('排序') INT(11)"` BUse int32 `xorm:"default NULL comment('是否启用 0:未启用 1:启用') TINYINT(1)"` }