From fa2fe43ad02cb95b598c39345278a4251d64d944 Mon Sep 17 00:00:00 2001 From: lihongjie0209 Date: Mon, 13 Nov 2023 22:08:09 +0800 Subject: [PATCH] bugfix --- .../coal/coalBlend/controller/CoalBlendController.java | 4 ++-- .../controller/CoalWashingDailyAnalysisController.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/cn/lihongjie/coal/coalBlend/controller/CoalBlendController.java b/src/main/java/cn/lihongjie/coal/coalBlend/controller/CoalBlendController.java index 151df11e..6dcfab27 100644 --- a/src/main/java/cn/lihongjie/coal/coalBlend/controller/CoalBlendController.java +++ b/src/main/java/cn/lihongjie/coal/coalBlend/controller/CoalBlendController.java @@ -1,6 +1,6 @@ package cn.lihongjie.coal.coalBlend.controller; -import cn.lihongjie.coal.annotation.Anonymous; +import cn.lihongjie.coal.annotation.OrgScope; import cn.lihongjie.coal.annotation.SysLog; import cn.lihongjie.coal.base.controller.BaseController; import cn.lihongjie.coal.base.dto.CommonQuery; @@ -20,7 +20,7 @@ import org.springframework.web.bind.annotation.RestController; @RequestMapping("/coalBlend") @RestController @SysLog(module = "配煤") -@Anonymous +@OrgScope public class CoalBlendController extends BaseController { @Autowired CoalBlendService service; diff --git a/src/main/java/cn/lihongjie/coal/coalWashingDailyAnalysis/controller/CoalWashingDailyAnalysisController.java b/src/main/java/cn/lihongjie/coal/coalWashingDailyAnalysis/controller/CoalWashingDailyAnalysisController.java index 81c22b91..c76bd5cd 100644 --- a/src/main/java/cn/lihongjie/coal/coalWashingDailyAnalysis/controller/CoalWashingDailyAnalysisController.java +++ b/src/main/java/cn/lihongjie/coal/coalWashingDailyAnalysis/controller/CoalWashingDailyAnalysisController.java @@ -1,6 +1,6 @@ package cn.lihongjie.coal.coalWashingDailyAnalysis.controller; -import cn.lihongjie.coal.annotation.Anonymous; +import cn.lihongjie.coal.annotation.OrgScope; import cn.lihongjie.coal.annotation.SysLog; import cn.lihongjie.coal.base.controller.BaseController; import cn.lihongjie.coal.base.dto.CommonQuery; @@ -20,7 +20,7 @@ import org.springframework.web.bind.annotation.RestController; @RequestMapping("/coalWashingDailyAnalysis") @RestController @SysLog(module = "洗煤报告表") -@Anonymous +@OrgScope public class CoalWashingDailyAnalysisController extends BaseController { @Autowired CoalWashingDailyAnalysisService service;