using Model.InterFaceModel; using System; using System.Collections.Generic; using System.Text; using static Model.InterFaceModel.RCSModel; namespace WMS.IBLL.IBllTransServer { public interface IRcsServer { /// /// RCS叫桶 /// /// 库区 /// 叫料类型 /// public void GetPalletNo(Pallnetmsg pallnetmsg, string url, out string taskNo); /// /// 将净桶改为脏桶并拉到脏桶区 /// /// /// public void ChangePalletStatus(string PalletNo, string url); /// /// MES下发清洗锁定脏桶 /// /// public void CleanPallet(Pallnetmsg pallnetmsg, string url); /// /// 申请储位 /// /// /// public void ApplyLocatNo(Pallnetmsg pallnetmsg, string url ,out string taskNo); /// /// RCS反馈任务完成 /// /// /// void RCSFinishTask(string taskNo, string status, string comeFrom, int userId = 0); /// /// 手动取消任务 /// /// /// /// void CancelTask(string taskNo, int userId); /// /// 手动下发任务 /// /// /// /// void DownTask(string taskNo, int userId, string url); } }