审查视图

pkg/domain/dictionary.go 352 字节
tangxuhui authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
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"`
}