From 069c5ab23fcbd02144079c4df0fd8183b22b1e04 Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期五, 30 一月 2026 15:02:55 +0800
Subject: [PATCH] feat(purchase): 配置文件
---
main-business/src/main/java/com/ruoyi/business/service/OfficialInventoryService.java | 10 +++++++++-
1 files changed, 9 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 98d7270..1671f39 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,6 +6,8 @@
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 org.apache.ibatis.executor.BatchResult;
import java.math.BigDecimal;
import java.util.List;
@@ -21,7 +23,7 @@
*/
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);
@@ -32,4 +34,10 @@
List<OfficialInventory> selectOfficialAll();
Map<String, BigDecimal> selectOfficialAllInfo();
+
+ List<OfficialInventoryDto> coalBlendingList();
+
+ void officialInventoryExport(HttpServletResponse response, OfficialInventoryDto officialInventoryDto);
+
+ Boolean delete(Long[] ids);
}
--
Gitblit v1.9.3