|
@@ -77,7 +77,7 @@ public class ResumeController {
|
|
|
//数据填充
|
|
|
List<ResumeWorkExperience> workList = resumeWorkExperienceService.findByResumeId(resume.getId());
|
|
|
List<ResumeEducationExperience> educationList = resumeEducationExperienceService.findByResumeId(resume.getId());
|
|
|
- resume.setSexName(dataDictionaryService.getName(resume.getSex()));
|
|
|
+ resume.setSexName(dataDictionaryService.findNameByCatalogNameAndValue("性别",resume.getSex()));
|
|
|
resume.setJobStatusName(dataDictionaryService.getName(resume.getJobStatus()));
|
|
|
resume.setJobStatusName(dataDictionaryService.getName(resume.getJobStatus()));
|
|
|
resume.setUserAge(String.valueOf(getAge(resume.getBirthday())));
|
|
@@ -232,7 +232,7 @@ public class ResumeController {
|
|
|
for(Resume resume : page.getResult()){
|
|
|
WorkCategory workCategory = workCategoryService.get(resume.getPositionCategoryId());
|
|
|
if(workCategory != null) resume.setPositionCategoryName(workCategory.getName());
|
|
|
- resume.setSexName(dataDictionaryService.getName(resume.getSex()));
|
|
|
+ resume.setSexName(dataDictionaryService.findNameByCatalogNameAndValue("性别",resume.getSex()));
|
|
|
resume.setDreamMoneyName(dataDictionaryService.getName(resume.getDreamMoney()));
|
|
|
resume.setWorkExpName(dataDictionaryService.getName(resume.getWorkExp()));
|
|
|
resume.setEducationName(dataDictionaryService.getName(resume.getEducation()));
|