From 1d2933b4209f891d7dbd431ba44577c7d5e5eef4 Mon Sep 17 00:00:00 2001
From: maven <2163098428@qq.com>
Date: 星期一, 22 九月 2025 11:40:18 +0800
Subject: [PATCH] yys 配置文件修改
---
main-business/src/main/java/com/ruoyi/business/service/OfficialInventoryService.java | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 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 ae1dc65..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
@@ -1,7 +1,16 @@
package com.ruoyi.business.service;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.ruoyi.business.dto.OfficialInventoryDto;
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>
@@ -13,4 +22,19 @@
*/
public interface OfficialInventoryService extends IService<OfficialInventory> {
+ 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