param_dictonary.go 899 字节
package allied_creation_basic

//ReqGetDictionarysByCode 根据code获取字典数据
type ReqGetDictionaryByCode struct {
	DictCodes []string `json:"dictCodes"`
}

//DataGetDictionarysByCode 根据code获取字典数据
type DataGetDictionaryByCode struct {
	Dictionarys []struct {
		// 字典编号 主键
		DictionaryId int64 `json:"dictionaryId,string"`
		// 字典编码
		DictCode string `json:"dictCode"`
		// 字典名称
		DictName string `json:"dictName"`
		// 备注信息
		Describe string `json:"describe"`
		// 字典值列表
		DictItems []struct {
			// 项编码
			ItemCode string `json:"itemCode"`
			// 项标签
			ItemLabel string `json:"itemLabel"`
			// 值
			ItemValue string `json:"itemValue"`
			// 是否可见【1:不可以】【2:可以】
			IsShow int `json:"isShow"`
			// 显示序号
			Sort int `json:"sort"`
		} `json:"dictItems"`
	} `json:"dictionarys"`
}