using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.TaskPlat.Entity
{
///
/// 任务截止时间变更通知
///
[SugarTable("task_cut_date_change_info", "任务截止时间变更通知")]
public class TaskCutDateChangeInfo : BaseModelV2
{
///
/// 任务主键ID
///
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)]
public long TASK_ID { get; set; }
///
/// 船公司
///
[SugarColumn(ColumnDescription = "船公司", IsNullable = true, Length = 50)]
public string? CARRIER { 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)]
public DateTime? NOTICE_DATE { get; set; }
///
/// 主单号
///
[SugarColumn(ColumnDescription = "主单号", IsNullable = true, Length = 64)]
public string? MBL_NO { get; set; }
///
/// 订舱ID
///
[SugarColumn(ColumnDescription = "订舱ID", IsNullable = true)]
public long? BOOKING_ID { get; set; }
///
/// 舱位主键
///
[SugarColumn(ColumnDescription = "舱位主键", IsNullable = true)]
public long? BOOKING_SLOT_ID { get; set; }
///
/// 装货港区域 NORTH_PORT-华北港口 SOUTH-华南港口
///
[SugarColumn(ColumnDescription = "装货港区域 NORTH_PORT-华北港口 SOUTH-华南港口", IsNullable = true, Length = 20)]
public string? PORTLOAD_AREA { get; set; }
///
/// 原因
///
[SugarColumn(ColumnDescription = "原因", IsNullable = true, Length = 1000)]
public string? REASON { get; set; }
///
/// 任务批次明细合计
///
[SugarColumn(ColumnDescription = "任务批次明细合计", IsNullable = true)]
public int? TASK_BATCH_TOTAL { get; set; }
///
/// 任务批次单票合计
///
[SugarColumn(ColumnDescription = "任务批次单票合计", IsNullable = true)]
public int? TASK_BATCH_PER_TOTAL { get; set; }
///
/// 任务批次号
///
[SugarColumn(ColumnDescription = "任务批次号", IsNullable = true, Length = 64)]
public string? TASK_BATCH_NO { get; set; }
}
}