using System; using SqlSugar; namespace RiskControl.NewService.Entity { /// /// 外部评级操作日志 /// public class OperationLog:BaseEntity { /// /// 更新用户 /// public int UpdateUserId { get; set; } /// /// 修改时间 /// public DateTime UpdateTime { get; set; }=DateTime.Now; /// /// 添加类型 /// public string OperationType { get; set; } /// /// 修改前 /// [SugarColumn(IsJson = true)] public CreditRatingReportOutside OldModel { get; set; } /// /// 修改后 /// [SugarColumn(IsJson = true)] public CreditRatingReportOutside NewModel { get; set; } } }