From d0d07f54198f405b46ef47cf65b39166550b6e35 Mon Sep 17 00:00:00 2001 From: sxu <602087911@qq.com> Date: Sat, 28 Sep 2024 16:12:15 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=93=E7=AE=97=E8=8F=9C=E5=8D=95=E6=9D=83?= =?UTF-8?q?=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sgzb/material/controller/SltAgreementInfoController.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/material/controller/SltAgreementInfoController.java b/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/material/controller/SltAgreementInfoController.java index 4799a7f..ff88237 100644 --- a/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/material/controller/SltAgreementInfoController.java +++ b/sgzb-modules/sgzb-material/src/main/java/com/bonus/sgzb/material/controller/SltAgreementInfoController.java @@ -15,6 +15,7 @@ import com.bonus.sgzb.common.core.web.domain.AjaxResult; import com.bonus.sgzb.common.core.web.page.TableDataInfo; import com.bonus.sgzb.common.log.annotation.Log; import com.bonus.sgzb.common.log.enums.BusinessType; +import com.bonus.sgzb.common.security.annotation.RequiresPermissions; import com.bonus.sgzb.material.domain.*; import com.bonus.sgzb.material.service.SltAgreementInfoService; import io.swagger.annotations.ApiOperation; @@ -42,6 +43,7 @@ public class SltAgreementInfoController extends BaseController { /** * 根据条件获取协议结算列表 */ + @RequiresPermissions("cost:settlement:list") @ApiOperation(value = "根据条件获取协议结算列表") @GetMapping("/getSltAgreementInfo") public TableDataInfo getSltAgreementInfo(AgreementInfo bean) { @@ -260,6 +262,7 @@ public class SltAgreementInfoController extends BaseController { /** * 获取结算审核列表 */ + @RequiresPermissions("cost:settlement:auditing") @ApiOperation(value = "获取结算审核列表") @GetMapping("/getSltExam") public TableDataInfo getSltExam(AgreementInfo bean) {