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/ServiceProjectSyncWin/Entities/TaskBCEntity.cs

75 lines
1.8 KiB
C#

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; }
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; }
}
}