#region << 版 本 注 释 >> /* * 版权所有 (c)2024 保留所有权 * CLR版本 4.0.30319.42000 * * * * * * */ #endregion << 版 本 注 释 >> namespace Ds.Modules.DsEntity.log { /// /// /// public class Sys_Log_DataAop : BasEntityTenantForIsIdentity { //操作前记录 包含: 字段描述 列名 值 表名 表描述 public string? EditBeforeData { get; set; } = "123";// = it.BeforeData;//插入Before为null,之前还没进库 //操作后记录 包含: 字段描述 列名 值 表名 表描述 public string? EditAfterData { get; set; } = "123";// = it.AfterData; public string? Aop_Sql { get; set; } = "123"; public string? Parameter { get; set; } = "123";// = it.Parameters; public string? Aop_Data { get; set; } = "123";//= it.BusinessData;//这边会显示你传进来的对象 public string Aop_Time { get; set; } = "123";//= it.Time; public string DiffType { get; set; } = "123"; //= it.DiffType;//enum insert 、update and delete } }