namespace DispenserCommon.DTO; /// /// 通过AOP方式拦截获取用户操作日志 /// 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; }