From 46cbb47dcc47099b9a29e8006f14af63f678c7b0 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期五, 24 四月 2026 11:25:44 +0800
Subject: [PATCH] 标准库:查看新增和更新人信息
---
basic-server/src/main/java/com/ruoyi/basic/mapper/IfsInventoryQuantityMapper.java | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/basic-server/src/main/java/com/ruoyi/basic/mapper/IfsInventoryQuantityMapper.java b/basic-server/src/main/java/com/ruoyi/basic/mapper/IfsInventoryQuantityMapper.java
index 1963bb9..cd37071 100644
--- a/basic-server/src/main/java/com/ruoyi/basic/mapper/IfsInventoryQuantityMapper.java
+++ b/basic-server/src/main/java/com/ruoyi/basic/mapper/IfsInventoryQuantityMapper.java
@@ -3,6 +3,7 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.basic.dto.IfsInventoryQuantityDto;
import com.ruoyi.basic.pojo.IfsInventoryQuantity;
+import com.ruoyi.basic.vo.IfsInventoryQuantityVO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@@ -24,7 +25,7 @@
* @param ifsInventoryId
* @return
*/
- int selectReportCountById(@Param("ifsInventoryId") Integer ifsInventoryId);
+ int selectReportCountById(@Param("ifsInventoryId") Long ifsInventoryId);
/**
@@ -39,4 +40,10 @@
@Param("supplierName") String supplierName,
@Param("startOfNextQuarter") LocalDateTime startOfNextQuarter,
@Param("endOfQuarter") LocalDateTime endOfQuarter);
+
+ List<IfsInventoryQuantityVO> selectSplitOrderList(@Param("partNo")String partNo,
+ @Param("lineNo")String lineNo,
+ @Param("releaseNo")String releaseNo,
+ @Param("receiptNo")Integer receiptNo,
+ @Param("orderNo")String orderNo,@Param("contract") String contract);
}
--
Gitblit v1.9.3