ScheduleExceptionMaster.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. namespace Admin.NET.Plugin.AiDOP.Production;
  2. /// <summary>
  3. /// 鎺掍骇寮傚父鏃ュ織锛圫cheduleExceptionMaster锛?
  4. /// </summary>
  5. [SugarTable("ScheduleExceptionMaster", "鎺掍骇寮傚父鏃ュ織")]
  6. public class ScheduleExceptionMaster
  7. {
  8. [SugarColumn(ColumnName = "RecID", IsPrimaryKey = true, IsIdentity = false)]
  9. public long RecID { get; set; }
  10. [SugarColumn(ColumnName = "Domain", Length = 8, IsNullable = true)]
  11. public string? Domain { get; set; }
  12. [SugarColumn(ColumnName = "WorkOrd", Length = 64, IsNullable = true)]
  13. public string? WorkOrd { get; set; }
  14. [SugarColumn(ColumnName = "ItemNum", Length = 30, IsNullable = true)]
  15. public string? ItemNum { get; set; }
  16. [SugarColumn(ColumnName = "CreateTime", IsNullable = true)]
  17. public DateTime? CreateTime { get; set; }
  18. [SugarColumn(ColumnName = "Remark", Length = 512, IsNullable = true)]
  19. public string? Remark { get; set; }
  20. [SugarColumn(ColumnName = "Type", Length = 64, IsNullable = true)]
  21. public string? Type { get; set; }
  22. [SugarColumn(ColumnName = "OptTime", IsNullable = true)]
  23. public DateTime? OptTime { get; set; }
  24. /// <summary>绉熸埛ID锛堝绉熸埛闅旂锛?/summary>
  25. [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
  26. public long? TenantId { get; set; }
  27. }