You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

173 lines
6.2 KiB
C#

using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.TaskPlat.Entity
{
/// <summary>
/// 货物运输计划已变更
///</summary>
[SugarTable("task_trans_plan_has_change", "货物运输计划已变更")]
public class TaskTransPlanHasChange : BaseModel<long>
{
/// <summary>
/// 任务主键ID
/// </summary>
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false ) ]
public long TaskId { get; set; }
/// <summary>
/// 船公司
/// </summary>
[SugarColumn(ColumnDescription = "船公司", IsNullable = true , Length = 50 ) ]
public string? Carrier { get; set; }
/// <summary>
/// ETA(预计到港时间)
/// </summary>
[SugarColumn(ColumnDescription = "ETA(预计到港时间)", IsNullable = true ) ]
public DateTime? Eta { get; set; }
/// <summary>
/// ETD(预计离港时间)
/// </summary>
[SugarColumn(ColumnDescription = "ETD(预计离港时间)", IsNullable = true ) ]
public DateTime? Etd { get; set; }
/// <summary>
/// 主单号
/// </summary>
[SugarColumn(ColumnDescription = "主单号", IsNullable = true , Length = 64 ) ]
public string? MblNo { get; set; }
/// <summary>
/// 订舱编号
/// </summary>
[SugarColumn(ColumnDescription = "订舱编号", IsNullable = true , Length = 64 ) ]
public string? BookingNo { get; set; }
/// <summary>
/// 原提单号
/// </summary>
[SugarColumn(ColumnDescription = "原提单号", IsNullable = true , Length = 64 ) ]
public string? OrigMblNo { get; set; }
/// <summary>
/// 集装箱号
/// </summary>
[SugarColumn(ColumnDescription = "集装箱号", IsNullable = true , Length = 64 ) ]
public string? ContaNo { get; set; }
/// <summary>
/// 变更原因
/// </summary>
[SugarColumn(ColumnDescription = "变更原因", IsNullable = true , Length = 1000 ) ]
public string? ChangeReason { get; set; }
/// <summary>
/// 船名
/// </summary>
[SugarColumn(ColumnDescription = "船名", IsNullable = true , Length = 30 ) ]
public string? Vessel { get; set; }
/// <summary>
/// 航次
/// </summary>
[SugarColumn(ColumnDescription = "航次", IsNullable = true , Length = 20 ) ]
public string? Voyno { get; set; }
/// <summary>
/// 装货港
/// </summary>
[SugarColumn(ColumnDescription = "装货港", IsNullable = true , Length = 100 ) ]
public string? Portload { get; set; }
/// <summary>
/// 装货港国家
/// </summary>
[SugarColumn(ColumnDescription = "装货港国家", IsNullable = true , Length = 100 ) ]
public string? PortloadCountry { get; set; }
/// <summary>
/// 装货码头
/// </summary>
[SugarColumn(ColumnDescription = "装货码头", IsNullable = true , Length = 100 ) ]
public string? PortloadTerminal { get; set; }
/// <summary>
/// 卸货港
/// </summary>
[SugarColumn(ColumnDescription = "卸货港", IsNullable = true , Length = 100 ) ]
public string? Portdischarge { get; set; }
/// <summary>
/// 卸货港国家
/// </summary>
[SugarColumn(ColumnDescription = "卸货港国家", IsNullable = true , Length = 100 ) ]
public string? PortdischargeCountry { get; set; }
/// <summary>
/// 卸货港码头
/// </summary>
[SugarColumn(ColumnDescription = "卸货港码头", IsNullable = true , Length = 100 ) ]
public string? PortdischargeTerminal { get; set; }
/// <summary>
/// 船旗
/// </summary>
[SugarColumn(ColumnDescription = "船旗", IsNullable = true , Length = 20 ) ]
public string? ShipFlag { get; set; }
/// <summary>
/// 订舱ID
/// </summary>
[SugarColumn(ColumnDescription = "订舱ID", IsNullable = true ) ]
public long? BookingId { get; set; }
/// <summary>
/// 是否已转发客户 1-是 0-否
/// </summary>
[SugarColumn(ColumnDescription = "是否已转发客户 1-是 0-否", IsNullable = true , Length = 1 ) ]
public long? IsTransferUser { get; set; }
/// <summary>
/// 最后转发客户邮件时间
/// </summary>
[SugarColumn(ColumnDescription = "最后转发客户邮件时间", IsNullable = true ) ]
public DateTime? LstTransferUserDate { get; set; }
/// <summary>
/// 最后转发客户邮件结果
/// </summary>
[SugarColumn(ColumnDescription = "最后转发客户邮件结果", IsNullable = true , Length = 500 ) ]
public string? LstTransferNotes { get; set; }
/// <summary>
/// 最后转发客户邮件状态 TEMP-暂存 SUCC-发送成功 FAILURE-发送失败
/// </summary>
[SugarColumn(ColumnDescription = "最后转发客户邮件状态 TEMP-暂存 SUCC-发送成功 FAILURE-发送失败", IsNullable = true , Length = 20 ) ]
public string? LstStatus { get; set; }
/// <summary>
/// 最后转发客户邮件状态名称
/// </summary>
[SugarColumn(ColumnDescription = "最后转发客户邮件状态名称", IsNullable = true , Length = 50 ) ]
public string? LstStatusName { get; set; }
/// <summary>
/// 列表批次号
/// </summary>
[SugarColumn(ColumnDescription = "列表批次号", IsNullable = true , Length = 64 ) ]
public string? GroupBatchNo { get; set; }
/// <summary>
/// 是否列表最后项 1-是最后项 0-不是最后项
/// </summary>
[SugarColumn(ColumnDescription = "是否列表最后项 1-是最后项 0-不是最后项", IsNullable = true , Length = 1 ) ]
public long? IsLast { get; set; }
}
}