using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// BC集装箱详情 /// public class TaskManageOrderBCCTNInfo { /// /// 箱型代码 /// 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; } } }