|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ServiceProjectSyncWin.Entities
|
|
|
|
|
{
|
|
|
|
|
[Tenant("db_master")]
|
|
|
|
|
[SugarTable("task_bc_info")]
|
|
|
|
|
public class TaskBCEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)]
|
|
|
|
|
public string PK_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string MBL_NO { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string BUSI_TYPE { get; set; }
|
|
|
|
|
|
|
|
|
|
public Nullable<DateTime> SI_CUT_DATE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 截关时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<DateTime> CLOSING_DATE { get; set; }
|
|
|
|
|
|
|
|
|
|
public Nullable<DateTime> ETD { get; set; }
|
|
|
|
|
|
|
|
|
|
public Nullable<DateTime> ETA { get; set; }
|
|
|
|
|
|
|
|
|
|
public Nullable<DateTime> VGM_CUTOFF_TIME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 截单时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<DateTime> CUT_SINGLE_TIME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 舱单截止时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<DateTime> MANIFEST_CUT_DATE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// MDGF提交截止时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<DateTime> MDGF_CUT_DATE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 截港时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<DateTime> CY_CUTOFF_TIME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 客户样单截止日期
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<DateTime> CUSTOM_SI_CUT_DATE { get; set; }
|
|
|
|
|
|
|
|
|
|
public string TASK_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsDeleted { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 租户id
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long? TenantId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|