From 6bb79064a8d717e191ceda7cb2dc1549d3613691 Mon Sep 17 00:00:00 2001 From: buhuazhen <hua100783@gmail.com> Date: 星期二, 26 八月 2025 13:58:03 +0800 Subject: [PATCH] purchase添加类型 以及新增字典查询方法 --- 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 5423545..1d761b3 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,11 +16,13 @@ */ 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); + + boolean addPending(PendingInventoryDto pendingInventoryDto); } -- Gitblit v1.9.3