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/TaskTransPlanHasChangeInfo.cs

141 lines
3.5 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_trans_plan_has_change")]
[Description("货物运输计划已变更")]
public class TaskTransPlanHasChangeInfo : 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>
/// ETA(预计到港时间)
/// </summary>
public Nullable<DateTime> ETA { get; set; }
/// <summary>
/// ETD(预计离港时间)
/// </summary>
public Nullable<DateTime> ETD { get; set; }
/// <summary>
/// 主单号
/// </summary>
public string MBL_NO { get; set; }
/// <summary>
/// 订舱编号
/// </summary>
public string BOOKING_NO { get; set; }
/// <summary>
/// 原提单号
/// </summary>
public string ORIG_MBL_NO { get; set; }
/// <summary>
/// 集装箱号
/// </summary>
public string CONTA_NO { get; set; }
/// <summary>
/// 变更原因
/// </summary>
public string CHANGE_REASON { get; set; }
/// <summary>
/// 装货港
/// </summary>
public string PORTLOAD { get; set; }
/// <summary>
/// 装货港国家
/// </summary>
public string PORTLOAD_COUNTRY { get; set; }
/// <summary>
/// 装货码头
/// </summary>
public string PORTLOAD_TERMINAL { get; set; }
/// <summary>
/// 卸货港
/// </summary>
public string PORTDISCHARGE { get; set; }
/// <summary>
/// 卸货港国家
/// </summary>
public string PORTDISCHARGE_COUNTRY { get; set; }
/// <summary>
/// 卸货港码头
/// </summary>
public string PORTDISCHARGE_TERMINAL { get; set; }
/// <summary>
/// 船旗
/// </summary>
public string SHIP_FLAG { get; set; }
/// <summary>
/// 订舱ID
/// </summary>
public Nullable<long> BOOKING_ID { get; set; }
/// <summary>
/// 是否已转发客户 1-是 0-否
/// </summary>
public bool IS_TRANSFER_USER { get; set; }
/// <summary>
/// 最后转发客户邮件时间
/// </summary>
public Nullable<DateTime> LST_TRANSFER_USER_DATE { get; set; }
/// <summary>
/// 最后转发客户邮件结果
/// </summary>
public string LST_TRANSFER_NOTES { get; set; }
/// <summary>
/// 最后转发客户邮件状态 TEMP-暂存 SUCC-发送成功 FAILURE-发送失败
/// </summary>
public string LST_STATUS { get; set; }
/// <summary>
/// 最后转发客户邮件状态名称
/// </summary>
public string LST_STATUS_NAME { get; set; }
}
}