模版下载接口
This commit is contained in:
parent
94ea652330
commit
c9a45e70c0
|
|
@ -384,11 +384,12 @@ public class EpcServiceImpl implements EpcService {
|
||||||
List<ComOtherPersonBean> comOtherList = tbData.getComOtherList();
|
List<ComOtherPersonBean> comOtherList = tbData.getComOtherList();
|
||||||
List<ComOtherPersonBean> subPersonList = tbData.getSubPersonList();
|
List<ComOtherPersonBean> subPersonList = tbData.getSubPersonList();
|
||||||
comOtherList.addAll(subPersonList);
|
comOtherList.addAll(subPersonList);
|
||||||
if (comOtherList.isEmpty()) {
|
if (!comOtherList.isEmpty()) {
|
||||||
for (int i = 0; i < comOtherList.size(); i++) {
|
for (int i = 0; i < comOtherList.size(); i++) {
|
||||||
ComOtherPersonBean item = comOtherList.get(i);
|
ComOtherPersonBean item = comOtherList.get(i);
|
||||||
Map<String, Object> map = new HashMap<>();
|
Map<String, Object> map = new HashMap<>();
|
||||||
map.put("hasJj", false);
|
map.put("hasJj", false);
|
||||||
|
map.put("zy", item.getPostName() != null ? item.getPostName() + "简介" : "项目经理简介");
|
||||||
// 处理工作经历
|
// 处理工作经历
|
||||||
List<Map<String, Object>> infoList = new ArrayList<>();
|
List<Map<String, Object>> infoList = new ArrayList<>();
|
||||||
// 处理证件图片
|
// 处理证件图片
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue