Commit e48099bfd30dc39ea59eb4fa644faa58632cc090

Authored by liquanyu
1 parent 7e47adbc0b

威海体重

Showing 2 changed files with 6 additions and 3 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/IBaseService.java View file @ e48099b
... ... @@ -25,8 +25,5 @@
25 25  
26 26 <T> PageResult findMongoPage (Class<T> entity, Query query, Integer page, Integer limit);
27 27  
28   - BaseResponse notify(Integer userId, List<String> patientIds);
29   -
30   - BaseResponse getSevenNotWeights(String doctorId);
31 28 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/PatientWeightService.java View file @ e48099b
... ... @@ -4,6 +4,7 @@
4 4 import com.lyms.platform.pojo.PatientWeight;
5 5 import com.lyms.platform.pojo.WeightConfigModel;
6 6  
  7 +import java.util.List;
7 8 import java.util.Map;
8 9  
9 10 /**
... ... @@ -40,5 +41,10 @@
40 41  
41 42 WeightConfigModel getWeightConfigByWeek(int week);
42 43 WeightConfigModel getWeightConfigBykcal(Map<String, String> map, String northSouth, String risk);
  44 +
  45 +
  46 + BaseResponse notify(Integer userId, List<String> patientIds);
  47 +
  48 + BaseResponse getSevenNotWeights(String doctorId);
43 49 }