QualityLineWorkDetail.cs 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. namespace Admin.NET.Plugin.AiDOP.Production;
  2. /// <summary>
  3. /// 产线休息时间表(QualityLineWorkDetail)
  4. /// </summary>
  5. [SugarTable("QualityLineWorkDetail", "工作休息时间")]
  6. public class QualityLineWorkDetail
  7. {
  8. /// <summary>自增列</summary>
  9. [SugarColumn(ColumnName = "RecID", IsPrimaryKey = true, IsIdentity = true)]
  10. public long RecID { get; set; }
  11. [SugarColumn(ColumnName = "Domain", Length = 8, IsNullable = true)]
  12. public string? Domain { get; set; }
  13. [SugarColumn(ColumnName = "Site", Length = 8, IsNullable = true)]
  14. public string? Site { get; set; }
  15. [SugarColumn(ColumnName = "ProdLine", Length = 8, IsNullable = true)]
  16. public string? ProdLine { get; set; }
  17. [SugarColumn(ColumnName = "WorkShift", Length = 8, IsNullable = true)]
  18. public string? WorkShift { get; set; }
  19. [SugarColumn(ColumnName = "Line", IsNullable = true)]
  20. public int? Line { get; set; }
  21. [SugarColumn(ColumnName = "Period", Length = 8, IsNullable = true)]
  22. public string? Period { get; set; }
  23. [SugarColumn(ColumnName = "RestTimePoint", Length = 8, IsNullable = true)]
  24. public string? RestTimePoint { get; set; }
  25. [SugarColumn(ColumnName = "RestTime", IsNullable = true)]
  26. public decimal? RestTime { get; set; }
  27. [SugarColumn(ColumnName = "EndDateTime", IsNullable = true)]
  28. public DateTime? EndDateTime { get; set; }
  29. [SugarColumn(ColumnName = "Descr1", Length = 256, IsNullable = true)]
  30. public string? Descr1 { get; set; }
  31. [SugarColumn(ColumnName = "Descr2", Length = 256, IsNullable = true)]
  32. public string? Descr2 { get; set; }
  33. [SugarColumn(ColumnName = "Ufld1", Length = 64, IsNullable = true)]
  34. public string? Ufld1 { get; set; }
  35. [SugarColumn(ColumnName = "Ufld2", Length = 64, IsNullable = true)]
  36. public string? Ufld2 { get; set; }
  37. [SugarColumn(ColumnName = "BusinessID", IsNullable = true)]
  38. public long? BusinessID { get; set; }
  39. [SugarColumn(ColumnName = "CreateUser", Length = 8, IsNullable = true)]
  40. public string? CreateUser { get; set; }
  41. [SugarColumn(ColumnName = "CreateTime", IsNullable = true)]
  42. public DateTime? CreateTime { get; set; }
  43. [SugarColumn(ColumnName = "UpdateUser", Length = 8, IsNullable = true)]
  44. public string? UpdateUser { get; set; }
  45. [SugarColumn(ColumnName = "UpdateTime", IsNullable = true)]
  46. public DateTime? UpdateTime { get; set; }
  47. [SugarColumn(ColumnName = "IsActive", IsNullable = true)]
  48. public int? IsActive { get; set; }
  49. [SugarColumn(ColumnName = "IsConfirm", IsNullable = true)]
  50. public int? IsConfirm { get; set; }
  51. /// <summary>租户ID(多租户隔离)</summary>
  52. [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
  53. public long? TenantId { get; set; }
  54. }