|
|
@@ -349,7 +349,9 @@ public class ProjectStaffRecordServiceImpl implements ProjectStaffRecordService
|
|
|
in.setPageSize(999999);
|
|
|
List<ProjectStaffRecordOut> projectStaffRecordOuts = listRecord(in);
|
|
|
List<Long> collect = projectStaffRecordOuts.stream().map(ProjectStaffRecordOut::getId).collect(Collectors.toList());
|
|
|
- projectStaffRecordMapper.mateUserRecord(collect);
|
|
|
+ if (!collect.isEmpty()){
|
|
|
+ projectStaffRecordMapper.mateUserRecord(collect);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
|