AdoS8ExceptionTimeline.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. namespace Admin.NET.Plugin.AiDOP.Entity.S8;
  2. [SugarTable("ado_s8_exception_timeline", "S8 异常时间线")]
  3. public class AdoS8ExceptionTimeline
  4. {
  5. [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true, ColumnDataType = "bigint")]
  6. public long Id { get; set; }
  7. [SugarColumn(ColumnName = "exception_id", ColumnDataType = "bigint")]
  8. public long ExceptionId { get; set; }
  9. [SugarColumn(ColumnName = "action_code", Length = 64)]
  10. public string ActionCode { get; set; } = string.Empty;
  11. [SugarColumn(ColumnName = "action_label", Length = 128)]
  12. public string ActionLabel { get; set; } = string.Empty;
  13. [SugarColumn(ColumnName = "from_status", Length = 32, IsNullable = true)]
  14. public string? FromStatus { get; set; }
  15. [SugarColumn(ColumnName = "to_status", Length = 32, IsNullable = true)]
  16. public string? ToStatus { get; set; }
  17. [SugarColumn(ColumnName = "operator_id", ColumnDataType = "bigint", IsNullable = true)]
  18. public long? OperatorId { get; set; }
  19. [SugarColumn(ColumnName = "operator_name", Length = 128, IsNullable = true)]
  20. public string? OperatorName { get; set; }
  21. [SugarColumn(ColumnName = "action_remark", Length = 2000, IsNullable = true)]
  22. public string? ActionRemark { get; set; }
  23. [SugarColumn(ColumnName = "created_at")]
  24. public DateTime CreatedAt { get; set; } = DateTime.Now;
  25. }