using JiepeiWMS.IServices.BASE; using JiepeiWMS.Model; using JiepeiWMS.Model.Models; using System.Threading.Tasks; namespace JiepeiWMS.IServices { /// /// IWMInInventoryServices /// public interface IWMInInventoryServices : IBaseServices { /// /// 获取入库单分页 /// /// Task> GetWMInInventoryPage(int page, int intPageSize, string department = "", string wareHouse = "", string supplier = "", string outInType = ""); } }