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.
38 lines
860 B
C#
38 lines
860 B
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; }
|
|
|
|
public Nullable<DateTime> ETD { get; set; }
|
|
|
|
public Nullable<DateTime> ETA { get; set; }
|
|
|
|
public Nullable<DateTime> VGM_CUTOFF_TIME { get; set; }
|
|
|
|
public string TASK_ID { get; set; }
|
|
}
|
|
}
|