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.
BookingHeChuan/Myshipping.Application/Entity/TaskManagePlat/TaskRouteChangeAdvisoryInfo.cs

110 lines
2.7 KiB
C#

using Myshipping.Application.Entity;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// 航线船舶截止时间调整的通知
/// </summary>
[SugarTable("task_route_change_advisory")]
[Description("航线船舶截止时间调整的通知")]
public class TaskRouteChangeAdvisoryInfo : TaskManageDbEntity
{
/// <summary>
/// 任务主键
/// </summary>
public string TASK_ID { get; set; }
/// <summary>
/// 船名
/// </summary>
public string VESSEL { get; set; }
/// <summary>
/// 航次
/// </summary>
public string VOYNO { get; set; }
/// <summary>
/// 船公司
/// </summary>
public string CARRIER { get; set; }
/// <summary>
/// 装货港提取
/// </summary>
public string READ_PORTLOAD { get; set; }
/// <summary>
/// 原ETD
/// </summary>
public Nullable<DateTime> ORIG_ETD { get; set; }
/// <summary>
/// MDGF提交截止时间
/// </summary>
public Nullable<DateTime> MDGF_CUT_DATE { get; set; }
/// <summary>
/// ETA(预计到港时间)
/// </summary>
public Nullable<DateTime> ETA { get; set; }
/// <summary>
/// ETD(预计离港时间)
/// </summary>
public Nullable<DateTime> ETD { get; set; }
/// <summary>
/// 样单截止日期
/// </summary>
public Nullable<DateTime> SI_CUT_DATE { get; set; }
/// <summary>
/// 码头移箱截止时间
/// </summary>
public Nullable<DateTime> TM_SHIFT_CUT_DATE { get; set; }
/// <summary>
/// 截VGM时间
/// </summary>
public Nullable<DateTime> VGM_CUTOFF_TIME { get; set; }
/// <summary>
/// 截港/场站收据截止
/// </summary>
public Nullable<DateTime> CY_CUT_DATE { get; set; }
/// <summary>
/// 航线代码
/// </summary>
public string ROUTE_CODE { get; set; }
/// <summary>
/// 邮件对应标题
/// </summary>
public string EMAIL_SUBJECT { get; set; }
/// <summary>
/// 周数
/// </summary>
public int WEEK { get; set; }
/// <summary>
/// 装货港代码
/// </summary>
public string PORTLOADID { get; set; }
/// <summary>
/// 装货港
/// </summary>
public string PORTLOAD { get; set; }
}
}