作者 yangfu

字典

... ... @@ -38,23 +38,24 @@ func (srv *CommonService) GetDictionaryByCode(getDictionaryQuery *query.GetDicti
{"按钮", "button"},
},
})
case "scale":
case "XTZD-001":
dictionaries = append(dictionaries, map[string]interface{}{
"dictName": "规模",
"dictItems": []dictItem{
{"50~100人", "50~100人"},
{"100~500人", "100~500人"},
{"500人以上", "500人以上"},
{"1", "0~100人"},
{"2", "101~200人"},
{"3", "201~500人"},
{"4", "501~1000人"},
{"5", "1000人以上"},
},
})
case "industry":
case "XTZD-002":
dictionaries = append(dictionaries, map[string]interface{}{
"dictName": "产业类型",
"dictItems": []dictItem{
{"食品行业", "食品行业"},
{"金融行业", "金融行业"},
{"保险行业", "保险行业"},
{"计算机行业", "计算机行业"},
{"1", "食品行业"},
{"2", "电子行业"},
{"3", "纺织业"},
},
})
}
... ...