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.

143 lines
4.7 KiB
C#

using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.TaskPlat.Entity
{
/// <summary>
/// 航线船舶截止时间调整的通知
///</summary>
[SugarTable("task_route_change_advisory", "航线船舶截止时间调整的通知")]
public class TaskRouteChangeAdvisory : BaseModelV2<long>
{
/// <summary>
/// 任务主键ID
/// </summary>
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)]
public long TASK_ID { 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 = 50)]
public string? CARRIER { get; set; }
/// <summary>
/// 装货港提取
/// </summary>
[SugarColumn(ColumnDescription = "装货港提取", IsNullable = true, Length = 100)]
public string? READ_PORTLOAD { get; set; }
/// <summary>
/// 装货港代码
/// </summary>
[SugarColumn(ColumnDescription = "装货港代码", IsNullable = true, Length = 5)]
public string? PORTLOADID { get; set; }
/// <summary>
/// 装货港
/// </summary>
[SugarColumn(ColumnDescription = "装货港", IsNullable = true, Length = 60)]
public string? PORTLOAD { get; set; }
/// <summary>
/// 原ETD
/// </summary>
[SugarColumn(ColumnDescription = "原ETD", IsNullable = true)]
public DateTime? ORIG_ETD { get; set; }
/// <summary>
/// MDGF提交截止时间
/// </summary>
[SugarColumn(ColumnDescription = "MDGF提交截止时间", IsNullable = true)]
public DateTime? MDGF_CUT_DATE { 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)]
public DateTime? SI_CUT_DATE { get; set; }
/// <summary>
/// 码头移箱截止时间
/// </summary>
[SugarColumn(ColumnDescription = "码头移箱截止时间", IsNullable = true)]
public DateTime? TM_SHIFT_CUT_DATE { get; set; }
/// <summary>
/// 截VGM时间
/// </summary>
[SugarColumn(ColumnDescription = "截VGM时间", IsNullable = true)]
public DateTime? VGM_CUTOFF_TIME { get; set; }
/// <summary>
/// 截港/场站收据截止
/// </summary>
[SugarColumn(ColumnDescription = "截港/场站收据截止", IsNullable = true)]
public DateTime? CY_CUT_DATE { get; set; }
/// <summary>
/// 航线代码
/// </summary>
[SugarColumn(ColumnDescription = "航线代码", IsNullable = true, Length = 10)]
public string? ROUTE_CODE { get; set; }
/// <summary>
/// 邮件对应标题
/// </summary>
[SugarColumn(ColumnDescription = "邮件对应标题", IsNullable = true, Length = 500)]
public string? EMAIL_SUBJECT { get; set; }
/// <summary>
/// 周数
/// </summary>
[SugarColumn(ColumnDescription = "周数", IsNullable = true)]
public int? WEEK { get; set; }
/// <summary>
/// 同一航次订单总数量
/// </summary>
[SugarColumn(ColumnDescription = "同一航次订单总数量", IsNullable = true)]
public int? BOOKING_ORDER_TOTAL { get; set; }
/// <summary>
/// 同一航次订单转发成功数量
/// </summary>
[SugarColumn(ColumnDescription = "同一航次订单转发成功数量", IsNullable = true)]
public int? BOOKING_ORDER_SUCC { get; set; }
/// <summary>
/// 同一航次订单转发失败数量
/// </summary>
[SugarColumn(ColumnDescription = "同一航次订单转发失败数量", IsNullable = true)]
public int? BOOKING_ORDER_FAILURE { get; set; }
}
}