...
|
...
|
@@ -2,14 +2,14 @@ package allied_creation_basic |
|
|
|
|
|
//ReqGetDictionarysByCode 根据code获取字典数据
|
|
|
type ReqGetDictionaryByCode struct {
|
|
|
DictCode []string `json:"dictCode"`
|
|
|
DictCodes []string `json:"dictCodes"`
|
|
|
}
|
|
|
|
|
|
//DataGetDictionarysByCode 根据code获取字典数据
|
|
|
type DataGetDictionaryByCode struct {
|
|
|
Dictionarys []struct {
|
|
|
// 字典编号 主键
|
|
|
DictionaryId int64 `json:"dictionaryId"`
|
|
|
DictionaryId int64 `json:"dictionaryId,string"`
|
|
|
// 字典编码
|
|
|
DictCode string `json:"dictCode"`
|
|
|
// 字典名称
|
...
|
...
|
|