From 1be8074de2176459ccea92115e4adb0704769104 Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期一, 16 三月 2026 16:43:40 +0800
Subject: [PATCH] 质量管理:提交原料后,不合格的生成不合格记录;合格则生成审批记录

---
 src/main/java/com/ruoyi/consumables/controller/ConsumablesInRecordController.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/com/ruoyi/consumables/controller/ConsumablesInRecordController.java b/src/main/java/com/ruoyi/consumables/controller/ConsumablesInRecordController.java
index a7d9921..2b11e0d 100644
--- a/src/main/java/com/ruoyi/consumables/controller/ConsumablesInRecordController.java
+++ b/src/main/java/com/ruoyi/consumables/controller/ConsumablesInRecordController.java
@@ -26,8 +26,8 @@
     @GetMapping("/listPage")
     @Log(title = "鐢熶骇鍏ュ簱-鍏ュ簱绠$悊-鍒楄〃", businessType = BusinessType.OTHER)
     @ApiOperation(value = "鍏ュ簱绠$悊鍒楄〃")
-    public AjaxResult listPage(Page page, ConsumablesInRecordDto ConsumablesInRecordDto) {
-        IPage<ConsumablesInRecordDto> result = consumablesInRecordService.listPage(page, ConsumablesInRecordDto);
+    public AjaxResult listPage(Page page, ConsumablesInRecordDto consumablesInRecordDto) {
+        IPage<ConsumablesInRecordDto> result = consumablesInRecordService.listPage(page, consumablesInRecordDto);
         return AjaxResult.success(result);
     }
 
@@ -44,8 +44,8 @@
 
     @PostMapping("/exportConsumablesInRecord")
     @ApiOperation("瀵煎嚭鍏ュ簱璁板綍")
-    public void exportConsumablesInRecord(HttpServletResponse response, ConsumablesInRecordDto ConsumablesInRecordDto) {
-        consumablesInRecordService.exportConsumablesInRecord(response,ConsumablesInRecordDto);
+    public void exportConsumablesInRecord(HttpServletResponse response, ConsumablesInRecordDto consumablesInRecordDto) {
+        consumablesInRecordService.exportConsumablesInRecord(response,consumablesInRecordDto);
     }
 
 }

--
Gitblit v1.9.3