From 1fd7a7d67a5df84b57af4fbcc310aa66da3cd8ca Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期三, 25 三月 2026 17:51:16 +0800
Subject: [PATCH] feat:1.出入库单位转换 2.仓储/耗材导出字段值优化 3.仓储/耗材库存为0不展示

---
 src/main/java/com/ruoyi/consumables/service/ConsumablesUnInventoryService.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/main/java/com/ruoyi/consumables/service/ConsumablesUnInventoryService.java b/src/main/java/com/ruoyi/consumables/service/ConsumablesUnInventoryService.java
index 645236b..89d3c45 100644
--- a/src/main/java/com/ruoyi/consumables/service/ConsumablesUnInventoryService.java
+++ b/src/main/java/com/ruoyi/consumables/service/ConsumablesUnInventoryService.java
@@ -19,15 +19,15 @@
  */
 public interface ConsumablesUnInventoryService extends IService<ConsumablesUnInventory> {
 
-    IPage<ConsumablesUnInventoryDto> pageConsumablesUnInventory(Page page, ConsumablesUnInventoryDto ConsumablesUnInventoryDto);
+    IPage<ConsumablesUnInventoryDto> pageConsumablesUnInventory(Page page, ConsumablesUnInventoryDto consumablesUnInventoryDto);
 
-    Integer addConsumablesUnInventory(ConsumablesUnInventoryDto ConsumablesUnInventoryDto);
+    Integer addConsumablesUnInventory(ConsumablesUnInventoryDto consumablesUnInventoryDto);
 
-    Integer subtractConsumablesUnInventory(ConsumablesUnInventoryDto ConsumablesUnInventoryDto);
+    Integer subtractConsumablesUnInventory(ConsumablesUnInventoryDto consumablesUnInventoryDto);
 
-    void exportConsumablesUnInventory(HttpServletResponse response, ConsumablesUnInventoryDto ConsumablesUnInventoryDto);
+    void exportConsumablesUnInventory(HttpServletResponse response, ConsumablesUnInventoryDto consumablesUnInventoryDto);
 
-    Boolean frozenConsumables(ConsumablesInventoryDto ConsumablesInventoryDto);
+    Boolean frozenConsumables(ConsumablesInventoryDto consumablesInventoryDto);
 
-    Boolean thawConsumables(ConsumablesInventoryDto ConsumablesInventoryDto);
+    Boolean thawConsumables(ConsumablesInventoryDto consumablesInventoryDto);
 }

--
Gitblit v1.9.3