人员信息报送导入分页

This commit is contained in:
Harryxzy 2024-01-02 09:41:30 +08:00
parent bca7697d75
commit dc3533d753
1 changed files with 1 additions and 1 deletions

View File

@ -733,7 +733,7 @@ public class EmployeeDeclareServiceImpl extends Service implements EmployeeDecla
if (CollectionUtils.isEmpty(insertList)) {
return;
}
List<List<EmployeeDeclarePO>> partition = Lists.partition(insertList, 100);
List<List<EmployeeDeclarePO>> partition = Lists.partition(insertList, 50);
partition.forEach(getEmployeeDeclareMapper()::batchInsert);
}
}