Commit 2e43d5467823b6905a553fe8b3970c7cd48aef66

Authored by liquanyu
1 parent bb299a8dda

产检节点统计

Showing 1 changed file with 3 additions and 3 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AreaCountFacade.java View file @ 2e43d54
... ... @@ -464,13 +464,13 @@
464 464 }
465 465 map.put("HOSPITAL_NAME", hospital);
466 466  
467   - //居住地
  467 + //户籍地址
468 468 String liveAddress = CommonsHelper.getResidence(pat.getProvinceId(), pat.getCityId(),
469 469 pat.getAreaId(), pat.getStreetId(), pat.getAddress(), basicConfigService);
470 470 map.put("HJ_ADDR", liveAddress);
471 471  
472 472  
473   - //户籍地址
  473 + //居住地
474 474 String addressRegister = CommonsHelper.getResidence(pat.getProvinceRegisterId(), pat.getCityRegisterId(),
475 475 pat.getAreaRegisterId(), pat.getStreetRegisterId(), pat.getAddressRegister(), basicConfigService);
476 476 map.put("HOME_ADDR", addressRegister);
... ... @@ -618,7 +618,7 @@
618 618 List<Map> results = new ArrayList<>();
619 619 if (CollectionUtils.isNotEmpty(list))
620 620 {
621   - int batchSize = 2;
  621 + int batchSize = 3;
622 622 for(int i = 0,end = 0 ; i < list.size() ; i+=batchSize)
623 623 {
624 624 end +=batchSize;