Commit 4f2ba8e0f8eb81b9d39f7444c7d86ffe6b6c53a7
1 parent
7c1bde5df1
Exists in
master
and in
1 other branch
update
Showing 3 changed files with 64 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/BabyCheckModel.java
View file @
4f2ba8e
| ... | ... | @@ -215,6 +215,14 @@ |
| 215 | 215 | private String heightEvaluate; |
| 216 | 216 | //头围评价 |
| 217 | 217 | private String headEvaluate; |
| 218 | + | |
| 219 | + //身长评价标准值 | |
| 220 | + private String heightEvaluateStandard; | |
| 221 | + //头围评价标准值 | |
| 222 | + private String headEvaluateStandard; | |
| 223 | + //胸围标准值 | |
| 224 | + private String chestwStandard; | |
| 225 | + | |
| 218 | 226 | private Date birth; |
| 219 | 227 | //检查月龄 |
| 220 | 228 | private Integer checkMonth; |
| ... | ... | @@ -1691,6 +1699,30 @@ |
| 1691 | 1699 | |
| 1692 | 1700 | public String getPortaGenitals() { |
| 1693 | 1701 | return portaGenitals; |
| 1702 | + } | |
| 1703 | + | |
| 1704 | + public String getHeightEvaluateStandard() { | |
| 1705 | + return heightEvaluateStandard; | |
| 1706 | + } | |
| 1707 | + | |
| 1708 | + public void setHeightEvaluateStandard(String heightEvaluateStandard) { | |
| 1709 | + this.heightEvaluateStandard = heightEvaluateStandard; | |
| 1710 | + } | |
| 1711 | + | |
| 1712 | + public String getHeadEvaluateStandard() { | |
| 1713 | + return headEvaluateStandard; | |
| 1714 | + } | |
| 1715 | + | |
| 1716 | + public void setHeadEvaluateStandard(String headEvaluateStandard) { | |
| 1717 | + this.headEvaluateStandard = headEvaluateStandard; | |
| 1718 | + } | |
| 1719 | + | |
| 1720 | + public String getChestwStandard() { | |
| 1721 | + return chestwStandard; | |
| 1722 | + } | |
| 1723 | + | |
| 1724 | + public void setChestwStandard(String chestwStandard) { | |
| 1725 | + this.chestwStandard = chestwStandard; | |
| 1694 | 1726 | } |
| 1695 | 1727 | |
| 1696 | 1728 | public void setPortaGenitals(String portaGenitals) { |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java
View file @
4f2ba8e
| ... | ... | @@ -217,6 +217,10 @@ |
| 217 | 217 | private BabyCheckModel getBabyCheckModel(BabyCheckRequest request) { |
| 218 | 218 | |
| 219 | 219 | BabyCheckModel model = new BabyCheckModel(); |
| 220 | + model.setHeightEvaluateStandard(request.getHeightEvaluateStandard()); | |
| 221 | + model.setHeadEvaluateStandard(request.getHeadEvaluateStandard()); | |
| 222 | + model.setChestwStandard(request.getChestwStandard()); | |
| 223 | + | |
| 220 | 224 | //结案 |
| 221 | 225 | /*model.setEndCase(request.getEndCase()); |
| 222 | 226 | //表示选中结案 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyCheckRequest.java
View file @
4f2ba8e
| ... | ... | @@ -82,10 +82,14 @@ |
| 82 | 82 | private String weightEvaluate; |
| 83 | 83 | //身长评价 |
| 84 | 84 | private String heightEvaluate; |
| 85 | + private String heightEvaluateStandard; | |
| 85 | 86 | //头围评价 |
| 86 | 87 | private String headEvaluate; |
| 88 | + private String headEvaluateStandard; | |
| 87 | 89 | //胸围 |
| 88 | 90 | private String chestw; |
| 91 | + private String chestwStandard; | |
| 92 | + | |
| 89 | 93 | //身长别体重 |
| 90 | 94 | private String heightWeight; |
| 91 | 95 | //预约儿保月龄下拉框 |
| ... | ... | @@ -435,6 +439,30 @@ |
| 435 | 439 | */ |
| 436 | 440 | private String socialContactIA; |
| 437 | 441 | private String socialContactDQ; |
| 442 | + | |
| 443 | + public String getHeightEvaluateStandard() { | |
| 444 | + return heightEvaluateStandard; | |
| 445 | + } | |
| 446 | + | |
| 447 | + public void setHeightEvaluateStandard(String heightEvaluateStandard) { | |
| 448 | + this.heightEvaluateStandard = heightEvaluateStandard; | |
| 449 | + } | |
| 450 | + | |
| 451 | + public String getHeadEvaluateStandard() { | |
| 452 | + return headEvaluateStandard; | |
| 453 | + } | |
| 454 | + | |
| 455 | + public void setHeadEvaluateStandard(String headEvaluateStandard) { | |
| 456 | + this.headEvaluateStandard = headEvaluateStandard; | |
| 457 | + } | |
| 458 | + | |
| 459 | + public String getChestwStandard() { | |
| 460 | + return chestwStandard; | |
| 461 | + } | |
| 462 | + | |
| 463 | + public void setChestwStandard(String chestwStandard) { | |
| 464 | + this.chestwStandard = chestwStandard; | |
| 465 | + } | |
| 438 | 466 | |
| 439 | 467 | public List<String> getOtherDiagnose() { |
| 440 | 468 | return otherDiagnose; |