using JiepeiWMS.IServices.BASE;
using JiepeiWMS.Model;
using JiepeiWMS.Model.Models;
using System;
using System.Threading.Tasks;
namespace JiepeiWMS.IServices
{
///
/// IWMProductListServices
///
public interface IWMProductListServices : IBaseServices
{
///
/// 获取商品分页
///
///
Task> GetWMProductListPage(int page, int intPageSize, string key = "", string options = "", DateTime? startdate = null, DateTime? enddate = null, int wareHouseId = 0);
///
/// 调用友新增物料接口
///
///
Task> BeginMaterialInNC(WMProductList listModel);
}
}