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) {