Commit 5089d92d4425e099ef30e90b1e190cec4fdc1a9d

Authored by yangfei
1 parent c74f17e5b1

查询医院配置的服务

Showing 1 changed file with 1 additions and 3 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/ModularFunctionConfigController.java View file @ 5089d92
... ... @@ -46,9 +46,7 @@
46 46 */
47 47 @RequestMapping(method = RequestMethod.GET, value = "/queryModularFunConfig")
48 48 @ResponseBody
49   - @TokenRequired
50   - public BaseResponse queryDiagnoseConfig(@RequestParam("hospitalId")String hospitalId,
51   - HttpServletRequest request) {
  49 + public BaseResponse queryDiagnoseConfig(@RequestParam("hospitalId")String hospitalId) {
52 50 return modularFunctionConfigFacde.queryDiagnoseConfig(hospitalId);
53 51 }
54 52