From 3a344a98e3e2ee732aab2158670cbe837a4b1458 Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期五, 29 五月 2026 11:15:34 +0800
Subject: [PATCH] fix:不合格管理查询

---
 src/main/java/com/ruoyi/purchase/controller/PurchaseReturnOrdersController.java |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/purchase/controller/PurchaseReturnOrdersController.java b/src/main/java/com/ruoyi/purchase/controller/PurchaseReturnOrdersController.java
index c23fd4a..9eebe0a 100644
--- a/src/main/java/com/ruoyi/purchase/controller/PurchaseReturnOrdersController.java
+++ b/src/main/java/com/ruoyi/purchase/controller/PurchaseReturnOrdersController.java
@@ -53,5 +53,11 @@
         return AjaxResult.success(purchaseReturnOrdersService.getPurchaseReturnOrderDtoById(id));
     }
 
+    @PostMapping("/deleteById/{id}")
+    public AjaxResult deleteById(@PathVariable Long id) {
+        purchaseReturnOrdersService.deleteById(id);
+        return AjaxResult.success();
+    }
+
 
 }

--
Gitblit v1.9.3