namespace Admin.NET.Plugin.AiDOP.Production;
///
/// 工序间衔接(PeriodSequenceDet)
///
[SugarTable("PeriodSequenceDet", "工序间衔接")]
public class PeriodSequenceDet
{
/// 自增列
[SugarColumn(ColumnName = "RecID", IsPrimaryKey = true, IsIdentity = true)]
public long RecID { get; set; }
[SugarColumn(ColumnName = "Domain", Length = 8, IsNullable = true)]
public string? Domain { get; set; }
[SugarColumn(ColumnName = "Site", Length = 8, IsNullable = true)]
public string? Site { get; set; }
[SugarColumn(ColumnName = "ItemNum", Length = 30, IsNullable = true)]
public string? ItemNum { get; set; }
[SugarColumn(ColumnName = "Line", Length = 8, IsNullable = true)]
public string? Line { get; set; }
[SugarColumn(ColumnName = "Op", Length = 6, IsNullable = true)]
public string? Op { get; set; }
[SugarColumn(ColumnName = "WorkCtr", Length = 8, IsNullable = true)]
public string? WorkCtr { get; set; }
[SugarColumn(ColumnName = "ProdDate", IsNullable = true)]
public DateTime? ProdDate { get; set; }
[SugarColumn(ColumnName = "PlanDate", IsNullable = true)]
public DateTime? PlanDate { get; set; }
[SugarColumn(ColumnName = "Period", Length = 8, IsNullable = true)]
public string? Period { get; set; }
[SugarColumn(ColumnName = "Sequence", IsNullable = true)]
public int? Sequence { get; set; }
[SugarColumn(ColumnName = "OrdQty", IsNullable = true)]
public decimal? OrdQty { get; set; }
[SugarColumn(ColumnName = "CompQty", IsNullable = true)]
public decimal? CompQty { get; set; }
[SugarColumn(ColumnName = "RejectQty", IsNullable = true)]
public decimal? RejectQty { get; set; }
[SugarColumn(ColumnName = "ScrapQty", IsNullable = true)]
public decimal? ScrapQty { get; set; }
[SugarColumn(ColumnName = "StartTime", IsNullable = true)]
public DateTime? StartTime { get; set; }
[SugarColumn(ColumnName = "EndTime", IsNullable = true)]
public DateTime? EndTime { get; set; }
[SugarColumn(ColumnName = "SetupTime", IsNullable = true)]
public decimal? SetupTime { get; set; }
[SugarColumn(ColumnName = "StdSetupTime", IsNullable = true)]
public decimal? StdSetupTime { get; set; }
[SugarColumn(ColumnName = "RunCrew", IsNullable = true)]
public int? RunCrew { get; set; }
[SugarColumn(ColumnName = "WorkOrds", Length = 64, IsNullable = true)]
public string? WorkOrds { get; set; }
[SugarColumn(ColumnName = "Status", Length = 32, IsNullable = true)]
public string? Status { get; set; }
[SugarColumn(ColumnName = "Employee", Length = 128, IsNullable = true)]
public string? Employee { get; set; }
[SugarColumn(ColumnName = "MoldNum", Length = 64, IsNullable = true)]
public string? MoldNum { get; set; }
[SugarColumn(ColumnName = "ProductRatio", IsNullable = true)]
public decimal? ProductRatio { get; set; }
[SugarColumn(ColumnName = "WholeRatio", IsNullable = true)]
public decimal? WholeRatio { get; set; }
[SugarColumn(ColumnName = "UDeci1", IsNullable = true)]
public decimal? UDeci1 { get; set; }
[SugarColumn(ColumnName = "UDeci2", IsNullable = true)]
public decimal? UDeci2 { get; set; }
[SugarColumn(ColumnName = "UChar1", Length = 64, IsNullable = true)]
public string? UChar1 { get; set; }
[SugarColumn(ColumnName = "UChar2", Length = 64, IsNullable = true)]
public string? UChar2 { get; set; }
[SugarColumn(ColumnName = "UDate1", IsNullable = true)]
public DateTime? UDate1 { get; set; }
[SugarColumn(ColumnName = "UDate2", IsNullable = true)]
public DateTime? UDate2 { get; set; }
[SugarColumn(ColumnName = "UInt1", IsNullable = true)]
public int? UInt1 { get; set; }
[SugarColumn(ColumnName = "UInt2", IsNullable = true)]
public int? UInt2 { get; set; }
[SugarColumn(ColumnName = "BusinessID", IsNullable = true)]
public long? BusinessID { get; set; }
[SugarColumn(ColumnName = "CreateUser", Length = 8, IsNullable = true)]
public string? CreateUser { get; set; }
[SugarColumn(ColumnName = "CreateTime", IsNullable = true)]
public DateTime? CreateTime { get; set; }
[SugarColumn(ColumnName = "UpdateUser", Length = 8, IsNullable = true)]
public string? UpdateUser { get; set; }
[SugarColumn(ColumnName = "UpdateTime", IsNullable = true)]
public DateTime? UpdateTime { get; set; }
[SugarColumn(ColumnName = "IsActive", IsNullable = true)]
public int? IsActive { get; set; }
[SugarColumn(ColumnName = "IsConfirm", IsNullable = true)]
public int? IsConfirm { get; set; }
/// 租户ID(多租户隔离)
[SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
public long? TenantId { get; set; }
}