using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Entity { public class LOTStockForkLiftModel { /// /// 叉车编号 /// public string ForkliftCode { get; set; } /// /// 仓库编号 /// public string WareCode { get; set; } /// /// 巷道号 /// public string LaneCode { get; set; } /// /// 任务类型【PTWY上架,RETN返仓,INTL移库,PICK出库,INVE盘点】 /// public string TaskType { get; set; } /// /// 托盘号 /// public string PalletID { get; set; } /// /// 源库位 /// public string SourceBin { get; set; } /// /// 目标库位 /// public string DestBin { get; set; } } }