feat(sip): 新增根据产品序列号列表查询库存功能
- 在IInventoryInfoService接口中添加listByProductSnList方法 - 支持通过多个产品序列号批量查询库存信息- 方法参数为产品序列号列表,返回对应库存信息集合master
parent
b0c8ac235c
commit
c590a42e83
|
|
@ -30,6 +30,7 @@ public interface IInventoryInfoService
|
||||||
* @return 产品库存集合
|
* @return 产品库存集合
|
||||||
*/
|
*/
|
||||||
public List<InventoryInfo> selectInventoryInfoList(InventoryInfo inventoryInfo);
|
public List<InventoryInfo> selectInventoryInfoList(InventoryInfo inventoryInfo);
|
||||||
|
public List<InventoryInfo> listByProductSnList(List<String> productSnList);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 新增产品库存
|
* 新增产品库存
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue