From 0f8f4c5de1d817aa87c4c79e966d3cfbd0997aeb Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期三, 23 七月 2025 16:55:56 +0800
Subject: [PATCH] 1.设备领用添加记录 2.采购添加运费

---
 main-business/src/main/java/com/ruoyi/business/service/OfficialInventoryService.java |   13 ++++++++++++-
 1 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/main-business/src/main/java/com/ruoyi/business/service/OfficialInventoryService.java b/main-business/src/main/java/com/ruoyi/business/service/OfficialInventoryService.java
index 59b2bf3..eb67537 100644
--- a/main-business/src/main/java/com/ruoyi/business/service/OfficialInventoryService.java
+++ b/main-business/src/main/java/com/ruoyi/business/service/OfficialInventoryService.java
@@ -6,8 +6,11 @@
 import com.ruoyi.business.entity.OfficialInventory;
 import com.baomidou.mybatisplus.extension.service.IService;
 import com.ruoyi.business.vo.OfficialInventoryVo;
+import jakarta.servlet.http.HttpServletResponse;
 
+import java.math.BigDecimal;
 import java.util.List;
+import java.util.Map;
 
 /**
  * <p>
@@ -19,11 +22,19 @@
  */
 public interface OfficialInventoryService extends IService<OfficialInventory> {
 
-    IPage<OfficialInventoryDto> selectOfficialInventoryList(Page page, OfficialInventoryDto officialInventoryDto);
+    IPage<OfficialInventoryDto> selectOfficialInventoryList(Page<OfficialInventory> page, OfficialInventoryDto officialInventoryDto);
 
     int mergeAll(OfficialInventoryDto officialInventoryDto);
 
     int editOfficial(OfficialInventoryDto officialInventoryDto);
 
     List<OfficialInventoryVo> selectOfficialList(OfficialInventoryVo officialInventoryVo);
+
+    List<OfficialInventory> selectOfficialAll();
+
+    Map<String, BigDecimal> selectOfficialAllInfo();
+
+    List<OfficialInventoryDto> coalBlendingList();
+
+    void officialInventoryExport(HttpServletResponse response, OfficialInventoryDto officialInventoryDto);
 }

--
Gitblit v1.9.3