From e083ab911902f39bff70906e559aed93ba23157c Mon Sep 17 00:00:00 2001 From: schry <2433098676@qq.com> Date: Wed, 5 Jul 2023 10:42:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E5=A4=87=E4=BB=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../glxp/api/controller/purchase/SupCertSetController.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/glxp/api/controller/purchase/SupCertSetController.java b/src/main/java/com/glxp/api/controller/purchase/SupCertSetController.java index 5709a35..efe2ffb 100644 --- a/src/main/java/com/glxp/api/controller/purchase/SupCertSetController.java +++ b/src/main/java/com/glxp/api/controller/purchase/SupCertSetController.java @@ -51,7 +51,7 @@ public class SupCertSetController { @AuthRuleAnnotation("") - @PostMapping("/sup/cert/set/add") + @PostMapping("/directToCpt/sup/cert/set/add") @Log(title = "资质证书", businessType = BusinessType.INSERT) public BaseResponse addCertSet(@RequestBody SupCertSetEntity supCertSetEntity) { if (supCertSetEntity == null) { @@ -79,7 +79,7 @@ public class SupCertSetController { @AuthRuleAnnotation("") - @PostMapping("/sup/cert/set/update") + @PostMapping("/directToCpt/sup/cert/set/update") @Log(title = "资质证书", businessType = BusinessType.UPDATE) public BaseResponse updateCertSet(@RequestBody SupCertSetEntity supCertSetEntity) { if (CollUtil.isNotEmpty(supCertSetEntity.getFlbmList())) { @@ -102,7 +102,7 @@ public class SupCertSetController { @AuthRuleAnnotation("") - @PostMapping("/sup/cert/set/delete") + @PostMapping("/directToCpt/sup/cert/set/delete") @Log(title = "资质证书", businessType = BusinessType.DELETE) public BaseResponse deleteCertSet(@RequestBody DeleteRequest deleteRequest) {