Commit 3a00018dd5bd3ebb7db6cd8ac908bc42dae0e0bd
1 parent
4f2ba8e0f8
Exists in
master
and in
6 other branches
update
Showing 3 changed files with 18 additions and 16 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/BabyCheckModel.java
View file @
3a00018
| ... | ... | @@ -211,6 +211,7 @@ |
| 211 | 211 | private String hospitalId; |
| 212 | 212 | //体重评价 |
| 213 | 213 | private String weightEvaluate; |
| 214 | + private String weightEvaluateStandard; | |
| 214 | 215 | //身长评价 |
| 215 | 216 | private String heightEvaluate; |
| 216 | 217 | //头围评价 |
| 217 | 218 | |
| ... | ... | @@ -220,9 +221,8 @@ |
| 220 | 221 | private String heightEvaluateStandard; |
| 221 | 222 | //头围评价标准值 |
| 222 | 223 | private String headEvaluateStandard; |
| 223 | - //胸围标准值 | |
| 224 | - private String chestwStandard; | |
| 225 | 224 | |
| 225 | + | |
| 226 | 226 | private Date birth; |
| 227 | 227 | //检查月龄 |
| 228 | 228 | private Integer checkMonth; |
| 229 | 229 | |
| ... | ... | @@ -1717,12 +1717,12 @@ |
| 1717 | 1717 | this.headEvaluateStandard = headEvaluateStandard; |
| 1718 | 1718 | } |
| 1719 | 1719 | |
| 1720 | - public String getChestwStandard() { | |
| 1721 | - return chestwStandard; | |
| 1720 | + public String getWeightEvaluateStandard() { | |
| 1721 | + return weightEvaluateStandard; | |
| 1722 | 1722 | } |
| 1723 | 1723 | |
| 1724 | - public void setChestwStandard(String chestwStandard) { | |
| 1725 | - this.chestwStandard = chestwStandard; | |
| 1724 | + public void setWeightEvaluateStandard(String weightEvaluateStandard) { | |
| 1725 | + this.weightEvaluateStandard = weightEvaluateStandard; | |
| 1726 | 1726 | } |
| 1727 | 1727 | |
| 1728 | 1728 | public void setPortaGenitals(String portaGenitals) { |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java
View file @
3a00018
| ... | ... | @@ -219,7 +219,7 @@ |
| 219 | 219 | BabyCheckModel model = new BabyCheckModel(); |
| 220 | 220 | model.setHeightEvaluateStandard(request.getHeightEvaluateStandard()); |
| 221 | 221 | model.setHeadEvaluateStandard(request.getHeadEvaluateStandard()); |
| 222 | - model.setChestwStandard(request.getChestwStandard()); | |
| 222 | + model.setWeightEvaluateStandard(request.getWeightEvaluateStandard()); | |
| 223 | 223 | |
| 224 | 224 | //结案 |
| 225 | 225 | /*model.setEndCase(request.getEndCase()); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyCheckRequest.java
View file @
3a00018
| ... | ... | @@ -80,6 +80,7 @@ |
| 80 | 80 | private String head; |
| 81 | 81 | //体重评价 |
| 82 | 82 | private String weightEvaluate; |
| 83 | + private String weightEvaluateStandard; | |
| 83 | 84 | //身长评价 |
| 84 | 85 | private String heightEvaluate; |
| 85 | 86 | private String heightEvaluateStandard; |
| ... | ... | @@ -88,7 +89,6 @@ |
| 88 | 89 | private String headEvaluateStandard; |
| 89 | 90 | //胸围 |
| 90 | 91 | private String chestw; |
| 91 | - private String chestwStandard; | |
| 92 | 92 | |
| 93 | 93 | //身长别体重 |
| 94 | 94 | private String heightWeight; |
| 95 | 95 | |
| ... | ... | @@ -327,11 +327,11 @@ |
| 327 | 327 | //其它诊断 |
| 328 | 328 | private List<String> otherDiagnose; |
| 329 | 329 | //处理意见 |
| 330 | - private String handlSuggest; | |
| 331 | - //指导意见 | |
| 332 | 330 | private String guideSuggest; |
| 333 | 331 | //产检医生 |
| 334 | 332 | @FormParam |
| 333 | + private String handlSuggest; | |
| 334 | + //指导意见 | |
| 335 | 335 | @NotEmpty(message = "检查医生不能为空") |
| 336 | 336 | private String checkDoctor; |
| 337 | 337 | //下次预约时间 |
| 338 | 338 | |
| ... | ... | @@ -456,13 +456,7 @@ |
| 456 | 456 | this.headEvaluateStandard = headEvaluateStandard; |
| 457 | 457 | } |
| 458 | 458 | |
| 459 | - public String getChestwStandard() { | |
| 460 | - return chestwStandard; | |
| 461 | - } | |
| 462 | 459 | |
| 463 | - public void setChestwStandard(String chestwStandard) { | |
| 464 | - this.chestwStandard = chestwStandard; | |
| 465 | - } | |
| 466 | 460 | |
| 467 | 461 | public List<String> getOtherDiagnose() { |
| 468 | 462 | return otherDiagnose; |
| ... | ... | @@ -1390,6 +1384,14 @@ |
| 1390 | 1384 | |
| 1391 | 1385 | public String getCouponCode() { |
| 1392 | 1386 | return couponCode; |
| 1387 | + } | |
| 1388 | + | |
| 1389 | + public String getWeightEvaluateStandard() { | |
| 1390 | + return weightEvaluateStandard; | |
| 1391 | + } | |
| 1392 | + | |
| 1393 | + public void setWeightEvaluateStandard(String weightEvaluateStandard) { | |
| 1394 | + this.weightEvaluateStandard = weightEvaluateStandard; | |
| 1393 | 1395 | } |
| 1394 | 1396 | |
| 1395 | 1397 | public void setCouponCode(String couponCode) { |