Commit 7238480c3b9c6e2b7f7cf543cb481b2835bf36ac

Authored by liquanyu
1 parent c34fe2b85c

update code

Showing 1 changed file with 15 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java View file @ 7238480
... ... @@ -1110,6 +1110,21 @@
1110 1110 return br;
1111 1111 }
1112 1112  
  1113 + /**
  1114 + * 1.低体重
  1115 + * 低于参考人群的年龄别体重的M -2s
  1116 + * 2.超重与肥胖
  1117 + * 中位数百分比 = 体重值/身高别体重中的体重中值 * 100%
  1118 + * 中位数百分比 < 80%以下评价为中重度消瘦
  1119 + * 中位数百分比 >= 80% && <90%评价为轻度消瘦
  1120 + * 中位数百分比 >110% && <=120%评价为超重
  1121 + * 中位数百分比 > 120%以上评价为肥胖
  1122 + * 3.生长迟缓
  1123 + * 身高别体重》M-2s && 年龄别身高小于M-2s
  1124 + * 4.慢性严重营养不良
  1125 + * 身高别体重小于M-2s && 年龄别身高小于M-2s。
  1126 + * @return
  1127 + */
1113 1128 public List<String> getBabyGrowthEvaluate(Double height, Integer sex, String birth, Double weight) {
1114 1129 List<String> growthEvaluate = new ArrayList<>();
1115 1130 Double hw = getHw(height);