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

115 lines
2.9 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>
8 months ago
[SugarTable("task_cut_date_change_detail_info")]
[Description(" 任务截止时间变更明细")]
public class TaskCutDateChangeDetailInfo : TaskManageDbEntity
{
/// <summary>
/// VGM任务主键
/// </summary>
public string P_ID { get; set; }
/// <summary>
/// 主单号
/// </summary>
public string MBL_NO { get; set; }
/// <summary>
/// 船名
/// </summary>
public string VESSEL { get; set; }
/// <summary>
/// 航次
/// </summary>
public string VOYNO { get; set; }
/// <summary>
/// 样单截止时间
/// </summary>
public Nullable<DateTime> SI_CUTOFF { get; set; }
/// <summary>
/// 样单截止时间文本
/// </summary>
public string SI_CUTOFF_TXT { get; set; }
/// <summary>
/// 开港时间
/// </summary>
public Nullable<DateTime> CY_OPEN { get; set; }
/// <summary>
/// 开港时间文本
/// </summary>
public string CY_OPEN_TXT { get; set; }
/// <summary>
/// 截港时间
/// </summary>
public Nullable<DateTime> CY_CUTOFF { get; set; }
/// <summary>
/// 截港时间文本
/// </summary>
public string CY_CUTOFF_TXT { get; set; }
/// <summary>
/// 舱单-入港清单截止时间
/// </summary>
public Nullable<DateTime> MANIFEST_CUT { get; set; }
/// <summary>
/// 舱单-入港清单截止时间文本
/// </summary>
public string MANIFEST_CUT_TXT { get; set; }
/// <summary>
/// MDGF提交截止时间
/// </summary>
public Nullable<DateTime> MDGF_CUT { get; set; }
/// <summary>
/// MDGF提交截止时间文本
/// </summary>
public string MDGF_CUT_TXT { get; set; }
/// <summary>
/// VGM截止时间
/// </summary>
public Nullable<DateTime> VGM_CUT { get; set; }
/// <summary>
/// VGM截止时间文本
/// </summary>
public string VGM_CUT_TXT { get; set; }
/// <summary>
/// 海关放行截止时间
/// </summary>
public Nullable<DateTime> CLOSING_DATE { get; set; }
/// <summary>
/// 海关放行截止时间文本
/// </summary>
public string CLOSING_DATE_TXT { get; set; }
/// <summary>
/// 订舱ID
/// </summary>
public Nullable<long> BOOKING_ID { get; set; }
}
}