using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 任务BC集装箱 /// public class TaskBCCTNInfoDto { /// /// 惟一主键 /// public string PKId { get; set; } /// /// 父主键 /// public string PID { get; set; } /// /// 箱型代码 /// public string CtnCode { get; set; } /// /// 箱型 /// public string CtnALL { get; set; } /// /// 箱量 /// public Nullable CTNNUM { get; set; } /// /// 件数 /// public Nullable PKGS { get; set; } /// /// 尺码 /// public Nullable CBM { get; set; } /// /// 毛重 /// public Nullable KGS { get; set; } /// /// 皮重 /// public Nullable TareWeight { get; set; } /// /// 危品票标示 /// public string IODGT { get; set; } /// /// 特殊装载需求 /// public string SpecialLoadingRequire { get; set; } /// /// 提箱场站 /// public string TakeCTNYard { get; set; } /// /// 提箱时间 /// public Nullable TakeCTNTime { get; set; } /// /// 还箱场站 /// public string ReturnCTNYard { get; set; } } }