feat(sip): 新增根据产品序列号列表查询库存功能

- 在IInventoryInfoService接口中添加listByProductSnList方法
- 支持通过多个产品序列号批量查询库存信息- 方法参数为产品序列号列表,返回对应库存信息集合
dev_1.0.0
chenhao 2025-10-28 15:35:59 +08:00
parent b0c8ac235c
commit c590a42e83
1 changed files with 1 additions and 0 deletions

View File

@ -30,6 +30,7 @@ public interface IInventoryInfoService
* @return
*/
public List<InventoryInfo> selectInventoryInfoList(InventoryInfo inventoryInfo);
public List<InventoryInfo> listByProductSnList(List<String> productSnList);
/**
*