From d5b6dcdeb9980b7b4cdafdc6324efc7b791c3357 Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期五, 20 三月 2026 09:33:22 +0800
Subject: [PATCH] fix:耗材库存报表查询字段优化

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