using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IWareDataAccess.Entity.Base { public class ContainerWebEntity { public int? id { get; set; } public string containerName { get; set; } public string containerType { get; set; } public int? status { get; set; } public decimal? weight { get; set; } public decimal? length { get; set; } public decimal? height { get; set; } public decimal? width { get; set; } public decimal? weightDifference { get; set; } public int? palletCode { get; set; } public string palletType { get; set; } public int? enable { get; set; } public string containerDes { get; set; } public int? isLock { get; set; } public ContainerWebEntity() { enable = 1; } } }