using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Entity { public class ICSContainerConModel { /// /// 操作人 /// public string User { get; set; } /// /// 操作时间 /// public string MTime { get; set; } /// /// 站点 /// public string WorkPoint { get; set; } /// /// 操作类型(1:BS容器绑定,2:PDA容器绑定,3:BS条码绑定,4:PDA条码绑定,5:BS容器解绑,6:PDA容器解绑,7:BS条码解绑,8:PDA条码解绑) /// public string Type { get; set; } /// /// 父容器编码 /// public string ContainerCode { get; set; } public List detail { get; set; } } public class ICSContainerConModelList { /// /// 容器编码 /// public string ContainerCode { get; set; } } }