using AutoMapper; using System; using Znyc.Admin.Commons.Dtos; using Znyc.Admin.Security.Entitys; namespace Znyc.Admin.Security.Dtos { /// /// 输入对象模型 /// [AutoMap(typeof(LogEx))] [Serializable] public class LogExInputDto : IInputDto { /// /// 主键Id /// public long Id { get; set; } /// /// 操作人 /// public string Account { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 方法名 /// public string ClassName { get; set; } /// /// 方法名 /// public string MethodName { get; set; } /// /// 异常名称 /// public string ExceptionName { get; set; } /// /// 异常信息 /// public string ExceptionMsg { get; set; } /// /// 异常源 /// public string ExceptionSource { get; set; } /// /// 堆栈信息 /// public string StackTrace { get; set; } /// /// 参数对象 /// public string MyPrParamsObjoperty { get; set; } /// /// 异常时间 /// public DateTime ExceptionTime { get; set; } } }