2026-04-15 23:41:05 +08:00
|
|
|
using System;
|
2025-10-29 17:00:27 +08:00
|
|
|
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; }
|
2026-04-15 23:41:05 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// 包装内数量(预制组件或散件数量)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int ComponentCount { get; set; }
|
2025-10-29 17:00:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#endregion Properties
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|