From 733b9e6837365d2817d7e8a0005b2c167c18f77e Mon Sep 17 00:00:00 2001 From: liding <756868258@qq.com> Date: 星期四, 19 六月 2025 17:58:48 +0800 Subject: [PATCH] 1.生产加工 2.煤种id优化 --- main-business/src/main/java/com/ruoyi/business/service/PendingInventoryService.java | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/main-business/src/main/java/com/ruoyi/business/service/PendingInventoryService.java b/main-business/src/main/java/com/ruoyi/business/service/PendingInventoryService.java index 1d12d25..e82d59e 100644 --- a/main-business/src/main/java/com/ruoyi/business/service/PendingInventoryService.java +++ b/main-business/src/main/java/com/ruoyi/business/service/PendingInventoryService.java @@ -16,9 +16,11 @@ */ public interface PendingInventoryService extends IService<PendingInventory> { - IPage<PendingInventory> selectPendingInventoryList(Page page, PendingInventoryDto pendingInventoryDto); + IPage<PendingInventoryDto> selectPendingInventoryList(Page page, PendingInventoryDto pendingInventoryDto); int addOrEditPending(PendingInventoryDto pendingInventoryDto); int delByIds(Long[] ids); + + int addOrEditCoalValue(PendingInventoryDto pendingInventoryDto); } -- Gitblit v1.9.3