dictionary.go 352 字节
package domain

//Dictionary 字典
type Dictionary struct {
	// 字典编号 主键
	DictionaryId int64 `json:"dictionaryId"`
	// 字典编码
	DictCode string `json:"dictCode"`
	// 字典名称
	DictName string `json:"dictName"`
	// 备注信息
	Describe string `json:"describe"`
	// 字典值列表
	DictItems []DictionaryItem `json:"dictItems"`
}