using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 任务预甩货明细 /// [SugarTable("task_rolling_nomination_detail", "任务预甩货明细")] public class TaskRollingNominationDetail : BaseModelV2 { /// /// 预甩船主键 /// [SugarColumn(ColumnDescription = "预甩船主键", IsNullable = false)] public long NOM_SHIP_ID { get; set; } /// /// 父主键 /// [SugarColumn(ColumnDescription = "父主键", IsNullable = false)] public long NOM_ID { get; set; } /// /// 预甩状态描述 /// [SugarColumn(ColumnDescription = "预甩状态描述", IsNullable = true, Length = 100)] public string? NOM_STATUS_NOTE { get; set; } /// /// 委托客户ID /// [SugarColumn(ColumnDescription = "委托客户ID", IsNullable = true)] public long? CUSTOMERID { get; set; } /// /// 委托单位名称 /// [SugarColumn(ColumnDescription = "委托单位名称", IsNullable = true, Length = 100)] public string? CUSTOMERNAME { get; set; } /// /// 订舱ID /// [SugarColumn(ColumnDescription = "订舱ID", IsNullable = true)] public long? BOOKING_ID { get; set; } /// /// 订舱抬头 /// [SugarColumn(ColumnDescription = "订舱抬头", IsNullable = true, Length = 150)] public string? BOOKED_BY { get; set; } /// /// 合约抬头 /// [SugarColumn(ColumnDescription = "合约抬头", IsNullable = true, Length = 150)] public string? CONTRACTUAL_NAME { get; set; } /// /// 提单号 /// [SugarColumn(ColumnDescription = "提单号", IsNullable = true, Length = 100)] public string? SHIPMENT { get; set; } /// /// 集装箱号 /// [SugarColumn(ColumnDescription = "集装箱号", IsNullable = true, Length = 64)] public string? EQUIPMENT_NUMBER { get; set; } /// /// 集装箱尺码 /// [SugarColumn(ColumnDescription = "集装箱尺码", IsNullable = true, Length = 10)] public string? EQU_SIZE { get; set; } /// /// 集装箱类型 /// [SugarColumn(ColumnDescription = "集装箱类型", IsNullable = true, Length = 10)] public string? CONTAINER_TYPE { get; set; } /// /// 集装箱高 /// [SugarColumn(ColumnDescription = "集装箱高", IsNullable = true, Length = 10)] public string? CONTAINER_HEIGHT { get; set; } /// /// TEU箱量 1-40尺,0.5-20尺 /// [SugarColumn(ColumnDescription = "TEU箱量 1-40尺,0.5-20尺", IsNullable = true, Length = 19)] public decimal? FEE { get; set; } /// /// 箱型代码 /// [SugarColumn(ColumnDescription = "箱型代码", IsNullable = true, Length = 20)] public string? CTNCODE { get; set; } /// /// 箱型 /// [SugarColumn(ColumnDescription = "箱型", IsNullable = true, Length = 20)] public string? CTNALL { get; set; } /// /// 箱量 /// [SugarColumn(ColumnDescription = "箱量", IsNullable = true)] public int? CTNNUM { get; set; } /// /// 货重 /// [SugarColumn(ColumnDescription = "货重", IsNullable = true, Length = 19)] public decimal? WEIGHT { get; set; } /// /// 箱型备注,箱型出现翻译错误是提醒 /// [SugarColumn(ColumnDescription = "箱型备注,箱型出现翻译错误是提醒", IsNullable = true, Length = 150)] public string? CTNNOTE { get; set; } /// /// 收货地 /// [SugarColumn(ColumnDescription = "收货地", IsNullable = true, Length = 100)] public string? PLACEOF_RECEIPT { get; set; } /// /// 装货港名称 /// [SugarColumn(ColumnDescription = "装货港名称", IsNullable = true, Length = 100)] public string? LOADPORT_NAME { get; set; } /// /// 卸货港名称 /// [SugarColumn(ColumnDescription = "卸货港名称", IsNullable = true, Length = 100)] public string? DISCHARGEPORT_NAME { get; set; } /// /// 交货地名称 /// [SugarColumn(ColumnDescription = "交货地名称", IsNullable = true, Length = 100)] public string? PLACEOF_DELIVERY { get; set; } /// /// 联系邮件 /// [SugarColumn(ColumnDescription = "联系邮件", IsNullable = true, Length = 150)] public string? BBYMAIL { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 100)] public string? REMARK { get; set; } /// /// 批次全局顺序号 /// [SugarColumn(ColumnDescription = "批次全局顺序号", IsNullable = true)] public int? SORT_NO { get; set; } } }