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, string url,string bindUrl, int userId); void jiaoCheHopper(string areaNo, string StartLocate, string plnNo, string plnStatus, decimal weight, string skuNo, string lotNo, string url, string bindUrl, int userId); /// /// 小车走出储位回传事件 /// /// /// /// void OutBinAgv(string taskNo, string url,string bindUrl); /// /// 小车反馈任务完成 /// /// /// /// /// /// void RCSFinishTask(string taskNo, string status, string comeFrom, int userId = 0); /// /// 清洗机叫料状态 /// /// 清洗机编号 /// 叫料点位:”input”-入口(叫脏桶),”output”-出口(净桶申请储位) /// /// void RCSCleanRequest(string deviceID, string deviceStation, string status, string url,string bindUrl); } }