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
{
///
/// 主键
///
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)]
public string PK_ID { get; set; }
public string MBL_NO { get; set; }
public string BUSI_TYPE { get; set; }
public Nullable SI_CUT_DATE { get; set; }
///
/// 截关时间
///
public Nullable CLOSING_DATE { get; set; }
public Nullable ETD { get; set; }
public Nullable ETA { get; set; }
public Nullable VGM_CUTOFF_TIME { get; set; }
///
/// 截单时间
///
public Nullable CUT_SINGLE_TIME { get; set; }
///
/// 舱单截止时间
///
public Nullable MANIFEST_CUT_DATE { get; set; }
///
/// MDGF提交截止时间
///
public Nullable MDGF_CUT_DATE { get; set; }
///
/// 截港时间
///
public Nullable CY_CUTOFF_TIME { get; set; }
///
/// 客户样单截止日期
///
public Nullable CUSTOM_SI_CUT_DATE { get; set; }
public string TASK_ID { get; set; }
public bool IsDeleted { get; set; }
///
/// 租户id
///
public long? TenantId { get; set; }
///
/// 创建时间
///
public DateTime CreatedTime { get; set; }
}
}