Commit c790652a by 阳浪

投稿统计

parent 83cf37d6
...@@ -74,6 +74,11 @@ public class EventTrackManageController { ...@@ -74,6 +74,11 @@ public class EventTrackManageController {
return Response.ok(eventTrackApiClients.queryDeptByType(date,types)); return Response.ok(eventTrackApiClients.queryDeptByType(date,types));
} }
@GetMapping("/api/eventTrack/queryTgNumByDept")
public Response<List<EventTrackDeptNumVo>> queryTgNumByDept(@RequestParam(value = "typeId", required = false)Long typeId){
return Response.ok(eventTrackApiClients.queryTgNumByDept(typeId));
}
@GetMapping("/selectExamListBySta") @GetMapping("/selectExamListBySta")
public Response<ExamStaVo> selectExamListBySta(){ public Response<ExamStaVo> selectExamListBySta(){
String year = DateUtil.toShortYear(new Date()); String year = DateUtil.toShortYear(new Date());
......
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