using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WCS.HangYang.LISTA.models { /// /// 立库入库参数 /// public class Inbound { /// /// 库区 /// public string areaCode { get; set; } /// /// 巷道 /// public int roadWay { get; set; } } /// /// 立库出库参数 /// public class Outbound { /// /// 库区 /// public string areaCode { get; set; } /// /// 托盘号 /// public string trayCode { get; set; } /// /// 出库货位号 /// public string locCode { get; set; } /// /// 终点库区 /// public string endArea { get; set; } /// /// 终点货位 /// public string endBit { get; set; } /// /// 任务类型 /// public string taskType { get; set; } /// /// 作业任务号 /// public string opCode { get; set; } } public class LocationParams { public int Row { get; set; } public int Column { get; set; } public int Layer { get; set; } public int roadWay { get; set; } public string loationCode { get; set; } public int Depth { get; set; } // 0=外侧/前深位, 1=深位(后深位) public bool IsOccupied { get; set; } public string ItemCode { get; set; } //锁 public bool HasOutboundLock { get; set; } //外侧 public bool IsOuterPosition { get; set; } //深位 public bool IsStorageDepth { get; set; } } }