From 1d915922d8197aa5d5dc3e40e3088d983dd6e141 Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期五, 13 三月 2026 17:57:59 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev_New_kthg' into dev_New_kthg
---
src/main/java/com/ruoyi/consumables/service/ConsumablesInventoryService.java | 41 +++++++++++++++++++++++++++++++++++++++++
1 files changed, 41 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/ruoyi/consumables/service/ConsumablesInventoryService.java b/src/main/java/com/ruoyi/consumables/service/ConsumablesInventoryService.java
new file mode 100644
index 0000000..ae11c7e
--- /dev/null
+++ b/src/main/java/com/ruoyi/consumables/service/ConsumablesInventoryService.java
@@ -0,0 +1,41 @@
+package com.ruoyi.consumables.service;
+
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.ruoyi.consumables.dto.ConsumablesInRecordDto;
+import com.ruoyi.consumables.dto.ConsumablesInventoryDto;
+import com.ruoyi.consumables.pojo.ConsumablesInventory;
+import com.ruoyi.framework.web.domain.R;
+import org.springframework.web.multipart.MultipartFile;
+
+import javax.servlet.http.HttpServletResponse;
+
+/**
+ * <p>
+ * 搴撳瓨琛� 鏈嶅姟绫�
+ * </p>
+ *
+ * @author 鑺杞欢锛堟睙鑻忥級鏈夐檺鍏徃
+ * @since 2026-01-21 04:16:36
+ */
+public interface ConsumablesInventoryService extends IService<ConsumablesInventory> {
+
+ IPage<ConsumablesInventoryDto> pageConsumablesInventory(Page page, ConsumablesInventoryDto consumablesInventoryDto);
+
+ Boolean addConsumablesInventory(ConsumablesInventoryDto consumablesInventoryDto);
+
+ Boolean subtractConsumablesInventory(ConsumablesInventoryDto consumablesInventoryDto);
+
+ R importConsumablesInventory(MultipartFile file);
+
+ void exportConsumablesInventory(HttpServletResponse response, ConsumablesInventoryDto consumablesInventoryDto);
+
+ IPage<ConsumablesInRecordDto> consumablesInventoryPage(ConsumablesInventoryDto consumablesInventoryDto, Page page);
+
+ IPage<ConsumablesInventoryDto> consumablesInAndOutRecord(ConsumablesInventoryDto consumablesInventoryDto, Page page);
+
+ Boolean frozenConsumables(ConsumablesInventoryDto consumablesInventoryDto);
+
+ Boolean thawConsumables(ConsumablesInventoryDto consumablesInventoryDto);
+}
--
Gitblit v1.9.3