using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Entity { public class ICSContainerBind { /// ///容器编码 /// public string ContainerCode { get; set; } /// /// 条码 /// public string LotNo { get; set; } /// /// 操作人 /// public string User { get; set; } /// /// 操作时间 /// public string MTime { get; set; } /// /// 站点 /// public string WorkPoint { get; set; } /// /// 操作类型(绑定/解绑)注:(开始任务/解除任务)为点击搬运时使用 /// public string TransType { get; set; } /// /// 绑定类型(货柜/窄巷道AGV/窄巷道叉车) /// public string ContainerType { get; set; } /// /// 推荐库位(窄巷道叉车(木托盘)) /// public string RecomendBinCode { get; set; } /// /// 位置编码(AGV用) /// public string LocationCode { get; set; } /// /// 任务ID(AGV回写时用) /// public string TaskCode { get; set; } /// /// 是否超托 /// public bool IsOverLoad { get; set; } } }