Dispenser/DispenserCommon/DTO/ActionLog.cs

15 lines
328 B
C#

namespace DispenserCommon.DTO;
/// <summary>
/// 通过AOP方式拦截获取用户操作日志
/// </summary>
public class ActionLog
{
public string Name { get; set; }
public object[] Params { get; set; }
public Exception Exception { get; set; }
public DateTime OperateTime { get; set; } = DateTime.Now;
}