using System; using System.Collections.Generic; using System.Security.AccessControl; using System.Text; namespace Model.ModelDto.BllAsnDto { /// /// 标签箱码Dto /// public class LabelBoxDto { public int Id { get; set; } public string AsnNo { get; set; } public int? AsnDetailNo { get; set; } public string BoxNo { get; set; } public string ParentBoxNo { get; set; } public decimal Qty { get; set; } public string SkuNo { get; set; } public string SkuName { get; set; } public string Standard { get; set; } public string PackageStandard { get; set; } public DateTime? StoreTime { get; set; } public string LotNo { get; set; } public string LotText { get; set; } public string SupplierName { get; set; } public string SupplierLot { get; set; } public DateTime? ProductionTime { get; set; } public DateTime? ExpirationTime { get; set; } public DateTime? InspectTime { get; set; } public DateTime? CompleteTime { get; set; } public string IsUse { get; set; } public string Level { get; set; } public int? QtyCount { get; set; } public int? QtyOrd { get; set; } public string UDF1 { get; set; } public string UDF2 { get; set; } public string UDF3 { get; set; } public string UDF4 { get; set; } public string UDF5 { get; set; } public string CreateUserName { get; set; } public string UpdateUserName { get; set; } public DateTime CreateTime { get; set; } public DateTime? UpdateTime { get; set; } /// /// 生成一维码图片路径 /// public string ImgStr { get; set; } } }