Commit 54d298c6967e6584e13996ba978c9677f89720af

Authored by gengxiaokai
1 parent adb62261de
Exists in master and in 1 other branch dev

秦皇岛冠新公卫接口

Showing 1 changed file with 3 additions and 3 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/QhdJbgwController.java View file @ 54d298c
... ... @@ -24,9 +24,9 @@
24 24  
25 25 @RequestMapping(method = RequestMethod.POST,value = "/qhd/ycdj")
26 26 @ResponseBody
27   - public List<Map<String,String>> qhdYcdj(@RequestBody Map<String,String> map){
28   - if(StringUtils.isNotEmpty(map.get("startDate")) && StringUtils.isNotEmpty(map.get("endDate"))){
29   - return qhdJbgwInterface.getPatient(map.get("startDate"),map.get("endDate"));
  27 + public List<Map<String,String>> qhdYcdj(@RequestBody String startDate,@RequestBody String endDate){
  28 + if(StringUtils.isNotEmpty(startDate) && StringUtils.isNotEmpty(endDate)){
  29 + return qhdJbgwInterface.getPatient(startDate,endDate);
30 30 }
31 31 return null;
32 32 }