|
@@ -10,37 +10,37 @@ public class SysLogDiff : EntityBase
|
|
|
/// <summary>
|
|
/// <summary>
|
|
|
/// 操作前记录
|
|
/// 操作前记录
|
|
|
/// </summary>
|
|
/// </summary>
|
|
|
- [SugarColumn(ColumnDescription = "操作前记录", ColumnDataType = "longtext,text,clob")]
|
|
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "操作前记录", ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
|
public string? BeforeData { get; set; }
|
|
public string? BeforeData { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
|
/// 操作后记录
|
|
/// 操作后记录
|
|
|
/// </summary>
|
|
/// </summary>
|
|
|
- [SugarColumn(ColumnDescription = "操作后记录", ColumnDataType = "longtext,text,clob")]
|
|
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "操作后记录", ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
|
public string? AfterData { get; set; }
|
|
public string? AfterData { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
|
/// Sql
|
|
/// Sql
|
|
|
/// </summary>
|
|
/// </summary>
|
|
|
- [SugarColumn(ColumnDescription = "Sql", ColumnDataType = "longtext,text,clob")]
|
|
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "Sql", ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
|
public string? Sql { get; set; }
|
|
public string? Sql { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
|
/// 参数 手动传入的参数
|
|
/// 参数 手动传入的参数
|
|
|
/// </summary>
|
|
/// </summary>
|
|
|
- [SugarColumn(ColumnDescription = "参数", ColumnDataType = "longtext,text,clob")]
|
|
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "参数", ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
|
public string? Parameters { get; set; }
|
|
public string? Parameters { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
|
/// 业务对象
|
|
/// 业务对象
|
|
|
/// </summary>
|
|
/// </summary>
|
|
|
- [SugarColumn(ColumnDescription = "业务对象", ColumnDataType = "longtext,text,clob")]
|
|
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "业务对象", ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
|
public string? BusinessData { get; set; }
|
|
public string? BusinessData { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
|
/// 差异操作
|
|
/// 差异操作
|
|
|
/// </summary>
|
|
/// </summary>
|
|
|
- [SugarColumn(ColumnDescription = "差异操作", ColumnDataType = "longtext,text,clob")]
|
|
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "差异操作", ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
|
public string? DiffType { get; set; }
|
|
public string? DiffType { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|