You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
756 B

This file contains ambiguous Unicode characters!

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 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)"`
}