Commit d7cfb77d by 梅存智

工作台优化

parent 356b3768
...@@ -54,8 +54,8 @@ public class EventTrackManageController { ...@@ -54,8 +54,8 @@ public class EventTrackManageController {
@GetMapping("/getTodayNum") @GetMapping("/getTodayNum")
public Response<EventTrackDayNumVo> getTodayNum(@RequestParam(value = "date",required = false) String date){ public Response<EventTrackDayNumVo> getTodayNum(@RequestParam(value = "date",required = false) String date, @RequestParam(value = "types",required = false) Integer types){
return Response.ok(eventTrackApiClients.getTodayNum(date)); return Response.ok(eventTrackApiClients.getTodayNum(date, types));
} }
@GetMapping("getNumByType") @GetMapping("getNumByType")
...@@ -147,4 +147,9 @@ public class EventTrackManageController { ...@@ -147,4 +147,9 @@ public class EventTrackManageController {
} }
return parcnet; return parcnet;
} }
@GetMapping("/queryExamNum")
Response<List<EventTrackDeptNumVo>> queryExamNum() {
return Response.ok(eventTrackApiClients.queryExamNum());
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment