using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model { public class PackagingManageOutput { #region Properties public string Code { get; set; } public string ContactName { get; set; } public string ContactPhone { get; set; } public string DriverName { get; set; } public string DriverPhone { get; set; } public string LicensePlateNumber { get; set; } public string PackagingCode { get; set; } public string PackagingManageId { get; set; } public string PlanStartDate { get; set; } public string ProjectId { get; set; } public string ProjectName { get; set; } public string ReceiveDate { get; set; } public string ReceiveMan { get; set; } public string StackingPosition { get; set; } public int? State { get; set; } public string TrainNumber { get; set; } public string TrainNumberOld { get; set; } public int? TypeInt { get; set; } public string TypeString { get; set; } public int? CategoryInt { get; set; } public string CategoryString { get; set; } /// /// 包装内数量(预制组件或散件数量) /// public int ComponentCount { get; set; } #endregion Properties } }