| 1234567891011121314151617181920212223242526272829303132333435 |
- namespace Admin.NET.Plugin.AiDOP.Entity.S8;
- [SugarTable("ado_s8_decision_record", "S8 决策记录")]
- public class AdoS8DecisionRecord
- {
- [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 = "decision_type", Length = 64)]
- public string DecisionType { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "decision_maker_id", ColumnDataType = "bigint")]
- public long DecisionMakerId { get; set; }
- [SugarColumn(ColumnName = "decision_maker_name", Length = 128)]
- public string DecisionMakerName { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "decision_basis", Length = 2000, IsNullable = true)]
- public string? DecisionBasis { get; set; }
- [SugarColumn(ColumnName = "decision_result", Length = 2000, IsNullable = true)]
- public string? DecisionResult { get; set; }
- [SugarColumn(ColumnName = "decision_remark", Length = 2000, IsNullable = true)]
- public string? DecisionRemark { get; set; }
- [SugarColumn(ColumnName = "decision_time")]
- public DateTime DecisionTime { get; set; } = DateTime.Now;
- [SugarColumn(ColumnName = "is_deleted", ColumnDataType = "boolean")]
- public bool IsDeleted { get; set; }
- }
|