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; } /// /// 绑定类型(货柜/窄巷道叉车(料架)/窄巷道叉车(木托盘)) /// public string ContainerType { get; set; } /// /// 推荐库位(窄巷道叉车(木托盘)) /// public string LocationCode { get; set; } } }