From 9ea8edde96272e14b0deacb81996a65c4fcb5285 Mon Sep 17 00:00:00 2001 From: lige <bestlige@outlook.com> Date: 星期三, 13 九月 2023 16:49:18 +0800 Subject: [PATCH] 修改接口权限 --- ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjAskMedicalHistoryController.java | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjAskMedicalHistoryController.java b/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjAskMedicalHistoryController.java index 5535287..3e7091b 100644 --- a/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjAskMedicalHistoryController.java +++ b/ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjAskMedicalHistoryController.java @@ -47,7 +47,7 @@ /** * 鏌ヨ闂瘖鍒楄〃 */ - @PreAuthorize("@ss.hasPermi('hosp:history:list')") +// @PreAuthorize("@ss.hasPermi('hosp:history:list')") @GetMapping("/list") public TableDataInfo list(TjAskMedicalHistory tjAskMedicalHistory) { startPage(); @@ -58,7 +58,7 @@ /** * 瀵煎嚭闂瘖鍒楄〃 */ - @PreAuthorize("@ss.hasPermi('hosp:history:export')") +// @PreAuthorize("@ss.hasPermi('hosp:history:export')") @Log(title = "闂瘖", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, TjAskMedicalHistory tjAskMedicalHistory) { @@ -70,7 +70,7 @@ /** * 鑾峰彇闂瘖璇︾粏淇℃伅 */ - @PreAuthorize("@ss.hasPermi('hosp:history:query')") +// @PreAuthorize("@ss.hasPermi('hosp:history:query')") @GetMapping(value = "/{askId}") public AjaxResult getInfo(@PathVariable("askId") Long askId) { return success(tjAskMedicalHistoryService.selectTjAskMedicalHistoryByAskId(askId)); @@ -208,7 +208,7 @@ /** * 鍒犻櫎闂瘖 */ - @PreAuthorize("@ss.hasPermi('hosp:history:remove')") +// @PreAuthorize("@ss.hasPermi('hosp:history:remove')") @Log(title = "闂瘖", businessType = BusinessType.DELETE) @DeleteMapping("/{askIds}") public AjaxResult remove(@PathVariable Long[] askIds) { -- Gitblit v1.8.0