package cn.iocoder.yudao.module.wms.service.inventory;
|
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
import cn.iocoder.yudao.module.wms.controller.admin.inventory.vo.history.WmsInventoryHistoryPageReqVO;
|
import cn.iocoder.yudao.module.wms.dal.dataobject.inventory.WmsInventoryHistoryDO;
|
|
import java.util.List;
|
|
/**
|
* WMS 库存流水 Service 接口
|
*
|
* @author 芋道源码
|
*/
|
public interface WmsInventoryHistoryService {
|
|
/**
|
* 获得库存流水分页
|
*
|
* @param pageReqVO 分页查询
|
* @return 库存流水分页
|
*/
|
PageResult<WmsInventoryHistoryDO> getInventoryHistoryPage(WmsInventoryHistoryPageReqVO pageReqVO);
|
|
/**
|
* 创建库存流水列表
|
*
|
* @param list 库存流水列表
|
*/
|
void createInventoryHistoryList(List<WmsInventoryHistoryDO> list);
|
|
}
|