You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.1 KiB
C#

#region << 版 本 注 释 >>
/*
* c2024
* CLR 4.0.30319.42000
*
*
*
*
*
*
*/
#endregion << 版 本 注 释 >>
namespace Ds.Modules.DsEntity.log
{
/// <summary>
///
/// </summary>
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
}
}