Commit f307c8d399f80e5c5a512128d1196b51f3301367
1 parent
1294955034
Exists in
master
and in
6 other branches
秦皇岛定制 。产检时增加产筛情况。 查看页面数据返回
Showing 3 changed files with 14 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java
View file @
f307c8d
| ... | ... | @@ -4440,7 +4440,7 @@ |
| 4440 | 4440 | antexChuResult.setNdbSelect(antExChuModel.getNdbSelect()); |
| 4441 | 4441 | antexChuResult.setNdbSelectOtherVal(antExChuModel.getNdbSelectOtherVal()); |
| 4442 | 4442 | antexChuResult.setPlacentas(antExChuModel.getPlacentas()); |
| 4443 | - | |
| 4443 | + antexChuResult.setProductionSieveType(antExChuModel.getProductionSieveType()); | |
| 4444 | 4444 | |
| 4445 | 4445 | object = antexChuResult; |
| 4446 | 4446 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
View file @
f307c8d
| ... | ... | @@ -2528,6 +2528,7 @@ |
| 2528 | 2528 | map.put("ctsh", data.getCtsh()); |
| 2529 | 2529 | map.put("ctgab", data.getCtgab()); |
| 2530 | 2530 | map.put("ctpoab", data.getCtpoab()); |
| 2531 | + map.put("productionSieveType", data.getProductionSieveType()); | |
| 2531 | 2532 | |
| 2532 | 2533 | |
| 2533 | 2534 | //医生所在团队 |
| ... | ... | @@ -3453,6 +3454,7 @@ |
| 3453 | 3454 | map.put("bloodSugarKf", data.getBloodSugarKf()); |
| 3454 | 3455 | map.put("bloodSugar1h", data.getBloodSugar1h()); |
| 3455 | 3456 | map.put("bloodSugar2h", data.getBloodSugar2h()); |
| 3457 | + map.put("productionSieveType", data.getAbdominalCircumference()); | |
| 3456 | 3458 | |
| 3457 | 3459 | br.setErrorcode(ErrorCodeConstants.SUCCESS); |
| 3458 | 3460 | br.setErrormsg("成功"); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntexChuResult.java
View file @
f307c8d
| ... | ... | @@ -701,6 +701,17 @@ |
| 701 | 701 | //TPOAb抗甲状腺过氧化物抗体 |
| 702 | 702 | public String ctpoab; |
| 703 | 703 | |
| 704 | + //秦皇岛定制字段:是否产筛 0:未产筛 1:已产筛 | |
| 705 | + public Integer productionSieveType; | |
| 706 | + | |
| 707 | + public Integer getProductionSieveType() { | |
| 708 | + return productionSieveType; | |
| 709 | + } | |
| 710 | + | |
| 711 | + public void setProductionSieveType(Integer productionSieveType) { | |
| 712 | + this.productionSieveType = productionSieveType; | |
| 713 | + } | |
| 714 | + | |
| 704 | 715 | public String getJw() { |
| 705 | 716 | return jw; |
| 706 | 717 | } |