| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- namespace Admin.NET.Plugin.AiDOP.Production;
- /// <summary>
- /// 工序间衔接(PeriodSequenceDet)
- /// </summary>
- [SugarTable("PeriodSequenceDet", "工序间衔接")]
- public class PeriodSequenceDet
- {
- /// <summary>自增列</summary>
- [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; }
- /// <summary>租户ID(多租户隔离)</summary>
- [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
- public long? TenantId { get; set; }
- }
|