Commit b1f9c074c0ceb46292e3d1c76ea927160652967d
1 parent
b795d0b875
Exists in
master
and in
6 other branches
word修改
Showing 2 changed files with 3 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyNutritionFacade.java
View file @
b1f9c07
... | ... | @@ -1137,7 +1137,7 @@ |
1137 | 1137 | if (CollectionUtils.isEmpty(models)) { |
1138 | 1138 | return new BaseListResponse().setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功").setData(listData).setPageInfo(chargeRecordQuery.getPageInfo()); |
1139 | 1139 | } |
1140 | - for (HealthChargeModel model : models){ | |
1140 | + for (HealthChargeModel model : models) { | |
1141 | 1141 | list.add(model.getChargeRecordId()); |
1142 | 1142 | } |
1143 | 1143 | if (list.size() > 0) { |
1144 | 1144 | |
... | ... | @@ -1324,7 +1324,9 @@ |
1324 | 1324 | |
1325 | 1325 | double kauls = getBasicKaul(month, model.getWeight(), model.getHeight(), baby.getSex()); |
1326 | 1326 | if (month >= 0 && month <= 5) { |
1327 | + System.out.println("=========" + model.getFeedType()); | |
1327 | 1328 | List<BabyDietReportModel> babyDietReport = mongoTemplate.find(Query.query(Criteria.where("monthAge").is(month).and("feedingPattern").is(Integer.valueOf(model.getFeedType()))), BabyDietReportModel.class); |
1329 | + | |
1328 | 1330 | for (BabyDietReportModel babyDiet : babyDietReport) { |
1329 | 1331 | if (null != babyDiet.getShape()) { |
1330 | 1332 | if (kaupEvaluate.equals("正常") && babyDiet.getShape() == 1) { |
platform-operate-api/src/main/resources/sfdjb.docx
View file @
b1f9c07