Commit 6e1e2f694ae60dae270e54270c87faf815d25fb7

Authored by hujiaqi
1 parent 18e03283c0

批量处理最后产检医生

Showing 1 changed file with 3 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/TestController.java View file @ 6e1e2f6
... ... @@ -346,8 +346,8 @@
346 346  
347 347 @ResponseBody
348 348 @RequestMapping(value = "/syncPatientsLastCheckEmployeeId", method = RequestMethod.GET)
349   - public void syncPatientsLastCheckEmployeeId(@RequestParam String hospitalId,
350   - @RequestParam(required = false) String size) {
  349 + public String syncPatientsLastCheckEmployeeId(@RequestParam String hospitalId,
  350 + @RequestParam(required = false) String size) {
351 351 PatientsQuery patientsQuery = new PatientsQuery();
352 352 patientsQuery.setYn(YnEnums.YES.getId());
353 353 // 医院id
... ... @@ -416,6 +416,7 @@
416 416 }
417 417 }).start();
418 418 }
  419 + return "syncPatientsLastCheckEmployeeId start......";
419 420 }
420 421  
421 422 @RequestMapping(value = "/initCardNo", method = RequestMethod.GET)