This commit is contained in:
wans 2022-01-26 17:28:01 +08:00
parent 17e2e6692a
commit efc3d46e3a

View File

@ -652,10 +652,13 @@ public class BasePopulationInfoServiceImpl extends DefaultBaseService implements
if(forIndex != 0 && forIndex % 5000 == 0){ if(forIndex != 0 && forIndex % 5000 == 0){
System.out.println("================= PULL_COUNT_" + forIndex + " ================="); System.out.println("================= PULL_COUNT_" + forIndex + " =================");
} }
forIndex++;
} catch (Exception e){ } catch (Exception e){
Map<String, Object> params = new HashMap<>(8);
params.put("basePopulationInfoIds", Arrays.asList(item.getBasePopulationInfoId().split(",")));
basePopulationInfoDao.removeBasePopulationInfo(params);
System.out.println(item); System.out.println(item);
} }
forIndex++;
} }
} }