Commit c7a5264411fa396b1982629b7895a1578261505a
1 parent
7a6b9c4708
Exists in
master
and in
6 other branches
update
Showing 3 changed files with 11 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java
View file @
c7a5264
... | ... | @@ -4294,7 +4294,7 @@ |
4294 | 4294 | antenatalExaminationResult.setNdbSelect(examinationModel.getNdbSelect()); |
4295 | 4295 | antenatalExaminationResult.setNdbSelectOtherVal(examinationModel.getNdbSelectOtherVal()); |
4296 | 4296 | antenatalExaminationResult.setTireData(examinationModel.getTireData()); |
4297 | - | |
4297 | + antenatalExaminationResult.setProductionSieveType(examinationModel.getProductionSieveType()); | |
4298 | 4298 | |
4299 | 4299 | object = antenatalExaminationResult; |
4300 | 4300 | } else { |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
View file @
c7a5264
... | ... | @@ -3454,7 +3454,7 @@ |
3454 | 3454 | map.put("bloodSugarKf", data.getBloodSugarKf()); |
3455 | 3455 | map.put("bloodSugar1h", data.getBloodSugar1h()); |
3456 | 3456 | map.put("bloodSugar2h", data.getBloodSugar2h()); |
3457 | - map.put("productionSieveType", data.getAbdominalCircumference()); | |
3457 | + map.put("productionSieveType", data.getProductionSieveType()); | |
3458 | 3458 | |
3459 | 3459 | br.setErrorcode(ErrorCodeConstants.SUCCESS); |
3460 | 3460 | br.setErrormsg("成功"); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntenatalExaminationResult.java
View file @
c7a5264
... | ... | @@ -119,7 +119,16 @@ |
119 | 119 | //羊水量 |
120 | 120 | private String bamnio; |
121 | 121 | |
122 | + //秦皇岛定制字段:是否产筛 0:未产筛 1:已产筛 | |
123 | + public Integer productionSieveType; | |
122 | 124 | |
125 | + public Integer getProductionSieveType() { | |
126 | + return productionSieveType; | |
127 | + } | |
128 | + | |
129 | + public void setProductionSieveType(Integer productionSieveType) { | |
130 | + this.productionSieveType = productionSieveType; | |
131 | + } | |
123 | 132 | |
124 | 133 | public String getBamnio() { |
125 | 134 | return bamnio; |