Commit bffd4dd7 by zwb

修改简历模块查询

parent c5291016
...@@ -545,14 +545,14 @@ public class NewEditionResumeUtil { ...@@ -545,14 +545,14 @@ public class NewEditionResumeUtil {
resume.resumeCacheService.saveResumeModelDataCache(dto.getModelId(), Long.valueOf(dto.getResumeId()), JSON.toJSONString(extra)); resume.resumeCacheService.saveResumeModelDataCache(dto.getModelId(), Long.valueOf(dto.getResumeId()), JSON.toJSONString(extra));
} }
} }
List<ResumeExtra> objList = new ArrayList<>(1);
ResumeExtra obj = new ResumeExtra();
if (extra != null) { if (extra != null) {
List<ResumeExtra> objList = new ArrayList<>(1);
ResumeExtra obj = new ResumeExtra();
BeanUtils.copyProperties(extra, obj); BeanUtils.copyProperties(extra, obj);
objList.add(obj);
return objList;
} }
return List.of(); obj.setDataType(code);
objList.add(obj);
return objList;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment