Commit bffd4dd7 by zwb

修改简历模块查询

parent c5291016
......@@ -545,15 +545,15 @@ public class NewEditionResumeUtil {
resume.resumeCacheService.saveResumeModelDataCache(dto.getModelId(), Long.valueOf(dto.getResumeId()), JSON.toJSONString(extra));
}
}
if (extra != null) {
List<ResumeExtra> objList = new ArrayList<>(1);
ResumeExtra obj = new ResumeExtra();
if (extra != null) {
BeanUtils.copyProperties(extra, obj);
}
obj.setDataType(code);
objList.add(obj);
return objList;
}
return List.of();
}
/**
* 社团经历模块
......
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