Commit baf829936fab1188e8806666a55124a94a0552bc

Authored by liquanyu
1 parent 6ab296515f

威海体重

Showing 3 changed files with 3 additions and 3 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/PatientWeightController.java View file @ baf8299
... ... @@ -233,7 +233,7 @@
233 233 @ResponseBody
234 234 @RequestMapping(value = "/notify/{type}",method = RequestMethod.POST)
235 235 public BaseResponse notify(List<String> patientIds,@PathVariable Integer type, HttpServletRequest request) {
236   - return patientWeightService.notify(getUserId(request), patientIds,type);
  236 + return patientWeightService.notify(patientIds,type);
237 237 }
238 238  
239 239 /**
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/PatientWeightService.java View file @ baf8299
... ... @@ -43,7 +43,7 @@
43 43 WeightConfigModel getWeightConfigBykcal(Map<String, String> map, String northSouth, String risk);
44 44  
45 45  
46   - BaseResponse notify(Integer userId, List<String> patientIds,Integer type);
  46 + BaseResponse notify(List<String> patientIds,Integer type);
47 47  
48 48 BaseResponse getWeights(String doctorId,Integer type,Integer status);
49 49 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/PatientWeightServiceImpl.java View file @ baf8299
... ... @@ -1747,7 +1747,7 @@
1747 1747 }
1748 1748  
1749 1749 @Override
1750   - public BaseResponse notify(Integer userId, final List<String> patientIds,final Integer type) {
  1750 + public BaseResponse notify(final List<String> patientIds,final Integer type) {
1751 1751  
1752 1752 new Thread(new Runnable() {
1753 1753 @Override