using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareModel.Entity.MES { public class CriterionContainerOutput { //public long? ware_location_vs_container_id { get; set; } public string Code { get; set; } public string Name { get; set; } public string TypeName { get; set; } public decimal? Long { get; set; } public decimal? Height { get; set; } public decimal? Width { get; set; } public int IsVirtual { get; set; } /// /// 巷道 /// public int? Lane { get; set; } /// /// 排 /// public int? Row { get; set; } /// /// 列 /// public int? Column { get; set; } /// /// 层 /// public int? Layer { get; set; } /// /// 库位类型 /// public long? LocTypeId { get; set; } /// /// 容器和库位绑定关系的库位编号 /// public string WareLocationCode { get; set; } } }