using Model.InterFaceModel; using System; using System.Collections.Generic; using System.Text; namespace WMS.IBLL { public interface IHttpServer { /// /// 申请储位 (立体库) /// /// /// /// OutCommandDto RequestLocation(string palletNo, string houseNo); /// /// 申请巷道(密集库) /// /// /// /// OutCommandDto RequestMiJiRoadWay(string palletNo, string houseNo); /// /// 1 申请储位 (申请巷道后 再申请储位储位 ) /// /// /// /// /// OutCommandDto RequestMiJiLocation(string palletNo, string houseNo, string roadwayNo); /// /// agv走出储位修改储位信息,仅限平库储位 /// /// /// void UpLocateByAgvOut(string taskNo,int userId); /// /// 入库完成JC34 /// /// 任务号 /// 操作人(下游系统时为空) void ArrivalSuccess2(string taskNo, int userId); } }