Commit 46b6f9637b353a3c2dfa0c7281dd4a7f0e9d057e
1 parent
3e6657de67
Exists in
master
and in
6 other branches
儿童管理-定制月龄筛选框0- >6 岁(2021/8/10,bug修改)
Showing 1 changed file with 12 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/EnumsController.java
View file @
46b6f96
... | ... | @@ -326,6 +326,18 @@ |
326 | 326 | @RequestMapping(value = "/getSpecialDatePoint/{specialType}", method = RequestMethod.GET) |
327 | 327 | @ResponseBody |
328 | 328 | public List <Map> getDateType(@PathVariable("specialType") Integer specialType) { |
329 | + List <Map> list = DatePointEnums.getDatePoint(specialType); | |
330 | + return list; | |
331 | + } | |
332 | + /** | |
333 | + * 儿童管理-定制月龄筛选框0- >6 岁(2021/8/10,bug修改) | |
334 | + * | |
335 | + * @param specialType | |
336 | + * @return | |
337 | + */ | |
338 | + @RequestMapping(value = "/getSpecialDatePoint2/{specialType}", method = RequestMethod.GET) | |
339 | + @ResponseBody | |
340 | + public List <Map> getSpecialDatePoint2(@PathVariable("specialType") Integer specialType) { | |
329 | 341 | List <Map> list = DatePointEnums.getDatePoint2(specialType); |
330 | 342 | return list; |
331 | 343 | } |