薪酬系统-福利模块bug修复v9,历史数据处理触发全量增员逻辑调整

This commit is contained in:
sy 2022-11-04 10:23:22 +08:00
parent 49e1f7624f
commit e09cc6955e
1 changed files with 8 additions and 3 deletions

View File

@ -1527,10 +1527,15 @@ public class SIArchivesBiz {
//将历史基本信息入库
List<List<InsuranceArchivesBaseInfoPO>> partition = Lists.partition(addBaseInfoList, 50);
partition.forEach(getInsuranceBaseInfoMapper()::batchSave);
sw.stop();
log.info("各操作计时 {}", sw.prettyPrint());
return true;
}else {
return false;
}
sw.stop();
log.info("各操作计时 {}", sw.prettyPrint());
return true;
} else {
return false;
}