| 1234567891011121314151617181920212223242526272829303132333435 |
- namespace Admin.NET.Plugin.AiDOP.Entity.S8;
- [SugarTable("ado_s8_exception_timeline", "S8 异常时间线")]
- public class AdoS8ExceptionTimeline
- {
- [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true, ColumnDataType = "bigint")]
- public long Id { get; set; }
- [SugarColumn(ColumnName = "exception_id", ColumnDataType = "bigint")]
- public long ExceptionId { get; set; }
- [SugarColumn(ColumnName = "action_code", Length = 64)]
- public string ActionCode { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "action_label", Length = 128)]
- public string ActionLabel { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "from_status", Length = 32, IsNullable = true)]
- public string? FromStatus { get; set; }
- [SugarColumn(ColumnName = "to_status", Length = 32, IsNullable = true)]
- public string? ToStatus { get; set; }
- [SugarColumn(ColumnName = "operator_id", ColumnDataType = "bigint", IsNullable = true)]
- public long? OperatorId { get; set; }
- [SugarColumn(ColumnName = "operator_name", Length = 128, IsNullable = true)]
- public string? OperatorName { get; set; }
- [SugarColumn(ColumnName = "action_remark", Length = 2000, IsNullable = true)]
- public string? ActionRemark { get; set; }
- [SugarColumn(ColumnName = "created_at")]
- public DateTime CreatedAt { get; set; } = DateTime.Now;
- }
|