using Model.InterFaceModel; using System; using System.Collections.Generic; using System.Text; using WMS.Entity.SysEntity; namespace WMS.IBLL.IBllTransServer { public interface IHopperTransportServer { List GetAreaListByUser(int userId); List GetLocatByArea(string area); List GetPlnStatusByArea(string area); List GetSkuByStatus(string palletStatus); List GetLotNoBySku(string skuNo); List GetSku(); void jiaoLiaoHopper(string areaNo, string endLocate, string plnStatus, string standard, string skuNo, string lotNo, int userId); void jiaoCheHopper(string areaNo, string StartLocate, string plnNo, string plnStatus, decimal weight, string skuNo, string lotNo, int userId); } }