using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YBDevice.Application.Logger
{
///
/// 审计日志列表
///
public class AuditListS2CDto
{
///
/// 操作内容
///
public string Title { get; set; }
///
/// 表名
///
public string TableName { get; set; }
///
/// 列名
///
public string ColumnName { get; set; }
///
/// 旧值
///
public string OldValue { get; set; }
///
/// 新值
///
public string NewValue { get; set; }
///
/// 操作时间
///
public DateTime CreatTime { get; set; }
///
/// 操作人Id
///
public int BusinessId { get; set; }
///
/// 操作人名称
///
public string UserName { get; set; }
}
}