Commit 36bd353ca3bef6fd5eb53a2ba7a508a58a8d7832
1 parent
3a00018dd5
Exists in
master
and in
6 other branches
update
Showing 4 changed files with 66 additions and 0 deletions
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckPageResult.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckResult.java
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java
View file @
36bd353
| ... | ... | @@ -1572,6 +1572,10 @@ |
| 1572 | 1572 | model.setSocialContact(checkModel.getSocialContact()); |
| 1573 | 1573 | model.setAlotExercise(checkModel.getAlotExercise()); |
| 1574 | 1574 | model.setFineExercise(checkModel.getFineExercise()); |
| 1575 | + model.setWeightEvaluateStandard(checkModel.getWeightEvaluateStandard()); | |
| 1576 | + model.setHeadEvaluateStandard(checkModel.getHeadEvaluateStandard()); | |
| 1577 | + model.setHeightEvaluateStandard(checkModel.getHeightEvaluateStandard()); | |
| 1578 | + | |
| 1575 | 1579 | |
| 1576 | 1580 | model.setTcType(checkModel.getTcType()); |
| 1577 | 1581 | model.setCnqk(checkModel.getCnqk()); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
View file @
36bd353
| ... | ... | @@ -5221,6 +5221,9 @@ |
| 5221 | 5221 | model.setSocialContact(checkModel.getSocialContact()); |
| 5222 | 5222 | model.setAlotExercise(checkModel.getAlotExercise()); |
| 5223 | 5223 | model.setFineExercise(checkModel.getFineExercise()); |
| 5224 | + model.setWeightEvaluateStandard(checkModel.getWeightEvaluateStandard()); | |
| 5225 | + model.setHeadEvaluateStandard(checkModel.getHeadEvaluateStandard()); | |
| 5226 | + model.setHeightEvaluateStandard(checkModel.getHeightEvaluateStandard()); | |
| 5224 | 5227 | |
| 5225 | 5228 | model.setTcType(checkModel.getTcType()); |
| 5226 | 5229 | model.setBabyName(babyModel.getName()); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckPageResult.java
View file @
36bd353
| ... | ... | @@ -19,9 +19,15 @@ |
| 19 | 19 | private String alotExercise ; |
| 20 | 20 | //精细运动 |
| 21 | 21 | private String fineExercise ; |
| 22 | + private String weightEvaluateStandard; | |
| 22 | 23 | |
| 24 | + //身长评价标准值 | |
| 25 | + private String heightEvaluateStandard; | |
| 26 | + //头围评价标准值 | |
| 27 | + private String headEvaluateStandard; | |
| 23 | 28 | |
| 24 | 29 | |
| 30 | + | |
| 25 | 31 | // 检查套餐<JCTCEnums> |
| 26 | 32 | private Integer tcType; |
| 27 | 33 | |
| ... | ... | @@ -1479,6 +1485,30 @@ |
| 1479 | 1485 | |
| 1480 | 1486 | public void setCheckDoctor(String checkDoctor) { |
| 1481 | 1487 | this.checkDoctor = checkDoctor; |
| 1488 | + } | |
| 1489 | + | |
| 1490 | + public String getWeightEvaluateStandard() { | |
| 1491 | + return weightEvaluateStandard; | |
| 1492 | + } | |
| 1493 | + | |
| 1494 | + public void setWeightEvaluateStandard(String weightEvaluateStandard) { | |
| 1495 | + this.weightEvaluateStandard = weightEvaluateStandard; | |
| 1496 | + } | |
| 1497 | + | |
| 1498 | + public String getHeightEvaluateStandard() { | |
| 1499 | + return heightEvaluateStandard; | |
| 1500 | + } | |
| 1501 | + | |
| 1502 | + public void setHeightEvaluateStandard(String heightEvaluateStandard) { | |
| 1503 | + this.heightEvaluateStandard = heightEvaluateStandard; | |
| 1504 | + } | |
| 1505 | + | |
| 1506 | + public String getHeadEvaluateStandard() { | |
| 1507 | + return headEvaluateStandard; | |
| 1508 | + } | |
| 1509 | + | |
| 1510 | + public void setHeadEvaluateStandard(String headEvaluateStandard) { | |
| 1511 | + this.headEvaluateStandard = headEvaluateStandard; | |
| 1482 | 1512 | } |
| 1483 | 1513 | |
| 1484 | 1514 | public String getCheckMonthAge() { |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckResult.java
View file @
36bd353
| ... | ... | @@ -19,7 +19,12 @@ |
| 19 | 19 | private String alotExercise ; |
| 20 | 20 | //精细运动 |
| 21 | 21 | private String fineExercise ; |
| 22 | + private String weightEvaluateStandard; | |
| 22 | 23 | |
| 24 | + //身长评价标准值 | |
| 25 | + private String heightEvaluateStandard; | |
| 26 | + //头围评价标准值 | |
| 27 | + private String headEvaluateStandard; | |
| 23 | 28 | |
| 24 | 29 | |
| 25 | 30 | // 血红蛋白券 |
| ... | ... | @@ -1048,6 +1053,30 @@ |
| 1048 | 1053 | |
| 1049 | 1054 | public String getBcgYc() { |
| 1050 | 1055 | return bcgYc; |
| 1056 | + } | |
| 1057 | + | |
| 1058 | + public String getWeightEvaluateStandard() { | |
| 1059 | + return weightEvaluateStandard; | |
| 1060 | + } | |
| 1061 | + | |
| 1062 | + public void setWeightEvaluateStandard(String weightEvaluateStandard) { | |
| 1063 | + this.weightEvaluateStandard = weightEvaluateStandard; | |
| 1064 | + } | |
| 1065 | + | |
| 1066 | + public String getHeightEvaluateStandard() { | |
| 1067 | + return heightEvaluateStandard; | |
| 1068 | + } | |
| 1069 | + | |
| 1070 | + public void setHeightEvaluateStandard(String heightEvaluateStandard) { | |
| 1071 | + this.heightEvaluateStandard = heightEvaluateStandard; | |
| 1072 | + } | |
| 1073 | + | |
| 1074 | + public String getHeadEvaluateStandard() { | |
| 1075 | + return headEvaluateStandard; | |
| 1076 | + } | |
| 1077 | + | |
| 1078 | + public void setHeadEvaluateStandard(String headEvaluateStandard) { | |
| 1079 | + this.headEvaluateStandard = headEvaluateStandard; | |
| 1051 | 1080 | } |
| 1052 | 1081 | |
| 1053 | 1082 | public void setBcgYc(String bcgYc) { |