|
@@ -996,12 +996,14 @@ public class WbsTreeServiceImpl extends BaseServiceImpl<WbsTreeMapper, WbsTree>
|
|
|
|
|
|
//新增
|
|
|
if (pawDTO.getReferenceType().equals("public")) {
|
|
|
- insertBatch(insertData1, 100);
|
|
|
+ //批量插入
|
|
|
+ insertBatch(insertData1, 10);
|
|
|
|
|
|
projectInfoMapper.updateTemplateIdById(pawDTO.getProjectId(), pawDTO.getWbsId(), "public");
|
|
|
|
|
|
} else if (pawDTO.getReferenceType().equals("private")) {
|
|
|
- insertBatch(insertData2, 100);
|
|
|
+ //批量插入
|
|
|
+ insertBatch(insertData2, 10);
|
|
|
|
|
|
//同步电签位置配置信息、编辑默认信息数据
|
|
|
textDictInfoService.saveBatch(insertData3, 100);
|