|
@@ -169,7 +169,6 @@ public class ProjectInformationService extends CrudService<ProjectInformationMap
|
|
|
//100条
|
|
|
List<ProjectInformation> listPage = projectBasicsList.subList(0, pointsDataLimit);
|
|
|
for(ProjectInformation info:listPage){
|
|
|
- info.setId(IdGen.uuid());
|
|
|
info.preInsert();
|
|
|
}
|
|
|
projectInformationMapper.insertSubmissionFormList(listPage);
|
|
@@ -178,14 +177,12 @@ public class ProjectInformationService extends CrudService<ProjectInformationMap
|
|
|
}
|
|
|
if(!projectBasicsList.isEmpty()){
|
|
|
for(ProjectInformation info:projectBasicsList){
|
|
|
- info.setId(IdGen.uuid());
|
|
|
info.preInsert();
|
|
|
}
|
|
|
projectInformationMapper.insertSubmissionFormList(projectBasicsList);
|
|
|
}
|
|
|
}else{
|
|
|
for(ProjectInformation info:projectBasicsList){
|
|
|
- info.setId(IdGen.uuid());
|
|
|
info.preInsert();
|
|
|
}
|
|
|
projectInformationMapper.insertSubmissionFormList(projectBasicsList);
|
|
@@ -213,7 +210,6 @@ public class ProjectInformationService extends CrudService<ProjectInformationMap
|
|
|
//100条
|
|
|
List<ProjectInformation> listPage = projectBasicsList.subList(0, pointsDataLimit);
|
|
|
for(ProjectInformation info:listPage){
|
|
|
- info.setId(IdGen.uuid());
|
|
|
info.preInsert();
|
|
|
}
|
|
|
projectInformationMapper.insertProjectInformationList(listPage);
|
|
@@ -222,14 +218,12 @@ public class ProjectInformationService extends CrudService<ProjectInformationMap
|
|
|
}
|
|
|
if(!projectBasicsList.isEmpty()){
|
|
|
for(ProjectInformation info:projectBasicsList){
|
|
|
- info.setId(IdGen.uuid());
|
|
|
info.preInsert();
|
|
|
}
|
|
|
projectInformationMapper.insertProjectInformationList(projectBasicsList);
|
|
|
}
|
|
|
}else{
|
|
|
for(ProjectInformation info:projectBasicsList){
|
|
|
- info.setId(IdGen.uuid());
|
|
|
info.preInsert();
|
|
|
}
|
|
|
projectInformationMapper.insertProjectInformationList(projectBasicsList);
|