Commit ca8bffbba891a4732ed40f250dad502f9fe5b15a
1 parent
41a5720741
Exists in
master
and in
8 other branches
高危报表
Showing 1 changed file with 2 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/RiskReportController.java
View file @
ca8bffb
1 | 1 | package com.lyms.platform.operate.web.controller; |
2 | 2 | |
3 | +import com.lyms.platform.common.annotation.TokenRequired; | |
3 | 4 | import com.lyms.platform.common.base.BaseController; |
4 | 5 | import com.lyms.platform.common.base.LoginContext; |
5 | 6 | import com.lyms.platform.common.result.BaseResponse; |
... | ... | @@ -30,6 +31,7 @@ |
30 | 31 | */ |
31 | 32 | @RequestMapping(method = RequestMethod.GET, value = "/queryRiskReportCount") |
32 | 33 | @ResponseBody |
34 | + @TokenRequired | |
33 | 35 | public BaseResponse queryRiskReportCount(@Valid RiskPatientsQueryRequest patientsQueryRequest,HttpServletRequest request) { |
34 | 36 | LoginContext loginState = (LoginContext) request.getAttribute("loginContext"); |
35 | 37 | return riskReportFacade.queryRiskReportCount(patientsQueryRequest,loginState.getId()); |