添加功能
This commit is contained in:
@@ -169,6 +169,9 @@ public class ParamUtil {
|
||||
case "industry": {
|
||||
return Optional.ofNullable(CommonConstant.INDUSTRY_MAP.get(code)).orElse("未知");
|
||||
}
|
||||
case "majorIndustry": {
|
||||
return Optional.ofNullable(CommonConstant.MAJOR_INDUSTRY_MAP.get(code)).orElse("未知");
|
||||
}
|
||||
case "educationLevel": {
|
||||
return Optional.ofNullable(CommonConstant.EDUCATION_LEVEL_MAP.get(code)).orElse("未知");
|
||||
}
|
||||
@@ -184,6 +187,9 @@ public class ParamUtil {
|
||||
case "employmentCrowd": {
|
||||
return Optional.ofNullable(CommonConstant.EMPLOYMENT_CROWD_MAP.get(code)).orElse("未知");
|
||||
}
|
||||
case "jobType": {
|
||||
return Optional.ofNullable(CommonConstant.JOB_TYPE_MAP.get(code)).orElse("未知");
|
||||
}
|
||||
default:
|
||||
throw new ServiceException("字典名称错误");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user