using Estsh.Core.Model.ExcelModel; using Estsh.Core.Model.Result; using Estsh.Core.Models; using Estsh.Core.Util; using System.Collections; namespace Estsh.Core.Services.IServices { public interface IInventTransQueryService : IBaseService { public Hashtable getDPSListByPage(String partNo, String partSpec, String cartonNo,String refOrderNo, String transType, String destErpWarehouse, string startTime , string endTime, Pager pager, String direction, String sort); public List getExportList(String partNo, String partSpec, String cartonNo,String refOrderNo, String transType, String destErpWarehouse, String startTime, String endTime); public List GetStockTransType(); public List GetErpwarehouse(); public List GetSrcLocate(); public List Getuserinfo(); } }