From 434e1aa2effeace3d899ad061bd09f649c2b1634 Mon Sep 17 00:00:00 2001 From: liujiang <569804566@qq.com> Date: Wed, 10 Sep 2025 23:15:46 +0800 Subject: [PATCH] =?UTF-8?q?master=EF=BC=9A=E6=A1=A3=E5=8F=A3=E6=9F=A5?= =?UTF-8?q?=E7=9C=8B=E6=8E=A8=E5=B9=BF=E8=90=A5=E9=94=80=E9=A9=B3=E5=9B=9E?= =?UTF-8?q?=E7=90=86=E7=94=B1=E8=B0=83=E6=95=B4=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ruoyi/web/controller/xkt/AdvertRoundController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/xkt/AdvertRoundController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/xkt/AdvertRoundController.java index 5caf65de0..cd0ce5e23 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/xkt/AdvertRoundController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/xkt/AdvertRoundController.java @@ -128,8 +128,8 @@ public class AdvertRoundController extends XktBaseController { } @PreAuthorize("@ss.hasAnyRoles('admin,general_admin,store')||@ss.hasSupplierSubRole()") - @ApiOperation(value = "查看图片审核拒绝理由", httpMethod = "PUT", response = R.class) - @PutMapping("/reject-reason/{advertRoundId}") + @ApiOperation(value = "查看图片审核拒绝理由", httpMethod = "GET", response = R.class) + @GetMapping("/reject-reason/{advertRoundId}") public R getRejectReason(@PathVariable Long advertRoundId) { return R.ok(advertRoundService.getRejectReason(advertRoundId)); }