using JiepeiWMS.IServices.BASE;
using JiepeiWMS.Model;
using JiepeiWMS.Model.Models;
using System;
using System.Threading.Tasks;
namespace JiepeiWMS.IServices
{
///
/// IWMStockLogServices
///
public interface IWMStockLogServices : IBaseServices
{
///
/// 获取库存流水日志分页
///
///
Task> GetWMStockLogPage(int page, int intPageSize, string key = "", string typeoptions = "", string warehouseoptions = "", DateTime? startdate = null, DateTime? enddate = null);
///
/// 获取最近几天得库存
///
/// 商品列表id
/// 商品id
/// 天数
/// 库存流水类型
///
Task GetStockNumByDateDay(int ProductListId, int Id, int Day, int Type);
}
}