dictionary.go
364 字节
package models
type Dictionary struct {
tableName string `pg:"dictionarys,alias:dictionary"`
// 字典编号 主键
DictionaryId int
// 字典编码
DictCode string
// 字典名称
DictName string
// 备注信息
Desc string
// 是否可见【1:不可以】【2:可以】
IsShow int
// 字典值列表
DictItems []*DictionaryItem `pg:",array"`
}