using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 货物运输计划已变更明细 /// [SugarTable("task_trans_plan_has_change_detail", "货物运输计划已变更明细")] public class TaskTransPlanHasChangeDetail : BaseModelV2 { /// /// 任务主键ID /// [SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)] public long P_ID { get; set; } /// /// 计划方式 FROM-出运计划 TO-到达计划 /// [SugarColumn(ColumnDescription = "计划方式 FROM-出运计划 TO-到达计划", IsNullable = true, Length = 20)] public string? PLAN_TYPE { get; set; } /// /// 列表类型 PORT-港口信息 EATD-日期信息 VESSEL-船名航次信息 /// [SugarColumn(ColumnDescription = "列表类型 PORT-港口信息 EATD-日期信息 VESSEL-船名航次信息", IsNullable = true, Length = 20)] public string? COLUMN_TYPE { get; set; } /// /// 船名 /// [SugarColumn(ColumnDescription = "船名", IsNullable = true, Length = 30)] public string? VESSEL { get; set; } /// /// 航次 /// [SugarColumn(ColumnDescription = "航次", IsNullable = true, Length = 20)] public string? VOYNO { get; set; } /// /// 装货港 /// [SugarColumn(ColumnDescription = "装货港", IsNullable = true, Length = 100)] public string? PORTLOAD { get; set; } /// /// 装货港国家 /// [SugarColumn(ColumnDescription = "装货港国家", IsNullable = true, Length = 100)] public string? PORTLOAD_COUNTRY { get; set; } /// /// 装货码头 /// [SugarColumn(ColumnDescription = "装货码头", IsNullable = true, Length = 100)] public string? PORTLOAD_TERMINAL { get; set; } /// /// 卸货港 /// [SugarColumn(ColumnDescription = "卸货港", IsNullable = true, Length = 100)] public string? PORTDISCHARGE { get; set; } /// /// 卸货港国家 /// [SugarColumn(ColumnDescription = "卸货港国家", IsNullable = true, Length = 100)] public string? PORTDISCHARGE_COUNTRY { get; set; } /// /// 卸货港码头 /// [SugarColumn(ColumnDescription = "卸货港码头", IsNullable = true, Length = 100)] public string? PORTDISCHARGE_TERMINAL { get; set; } /// /// 船旗 /// [SugarColumn(ColumnDescription = "船旗", IsNullable = true, Length = 20)] public string? SHIP_FLAG { get; set; } /// /// ETA(预计到港时间) /// [SugarColumn(ColumnDescription = "ETA(预计到港时间)", IsNullable = true)] public DateTime? ETA { get; set; } /// /// ETD(预计离港时间) /// [SugarColumn(ColumnDescription = "ETD(预计离港时间)", IsNullable = true)] public DateTime? ETD { get; set; } /// /// 顺序号 /// [SugarColumn(ColumnDescription = "顺序号", IsNullable = true)] public int? SORT_NO { get; set; } /// /// 集装箱号 /// [SugarColumn(ColumnDescription = "集装箱号", IsNullable = true, Length = 50)] public string? CONTA_NO { get; set; } /// /// 是否已弃用 1-已弃用 0-正使用 /// [SugarColumn(ColumnDescription = "是否已弃用 1-已弃用 0-正使用", IsNullable = true, Length = 1)] public bool? IS_REMOVED { get; set; } } }