Commit 070ae9ec7c7a6dbca7de45f28a37f0c708a0034e
1 parent
502ee190c9
Exists in
master
and in
6 other branches
秦皇岛冠新公卫接口
Showing 1 changed file with 10 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/QhdJbgwController.java
View file @
070ae9e
... | ... | @@ -129,7 +129,16 @@ |
129 | 129 | @ResponseBody |
130 | 130 | public List<Map<String,String>> qhdFM(String startDate,String endDate){ |
131 | 131 | if(StringUtils.isNotEmpty(startDate) && StringUtils.isNotEmpty(endDate)){ |
132 | - return qhdJbgwInterface.getFm(startDate,endDate); | |
132 | + return qhdJbgwInterface.getFm(startDate, endDate); | |
133 | + } | |
134 | + return null; | |
135 | + } | |
136 | + | |
137 | + @RequestMapping(value = "/qhd/xsefstest") | |
138 | + @ResponseBody | |
139 | + public List<Map<String,String>> qhdxinshengerFangShi(String startDate,String endDate){ | |
140 | + if(StringUtils.isNotEmpty(startDate) && StringUtils.isNotEmpty(endDate)){ | |
141 | + return qhdJbgwInterface.getXsefs(startDate, endDate); | |
133 | 142 | } |
134 | 143 | return null; |
135 | 144 | } |