人员分片

This commit is contained in:
钱涛 2022-11-25 14:48:49 +08:00
parent dc69a479ec
commit 4b75ba67e9
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ public class SIRecessionServiceImpl extends Service implements SIRecessionServic
//查询退差员工对应的退差月份的正常缴纳的福利台账数据
List<InsuranceAccountDetailPO> detailPOS = new ArrayList<>();
List<List<Long>> partitionEmpIds = Lists.partition((List<Long>) employeeIds, 1000);
List<List<Long>> partitionEmpIds = Lists.partition((List<Long>) employeeIds, 100);
partitionEmpIds.forEach(p -> {
detailPOS.addAll(
getInsuranceAccountDetailMapper().list(InsuranceAccountDetailParam.builder()