using AutoMapper; using System; using Znyc.Recruitment.Admin.Commons.Dtos; using Znyc.Recruitment.Admin.Security.Entitys; namespace Znyc.Recruitment.Admin.Security.Dtos { /// /// 输入对象模型 /// [AutoMap(typeof(ExceptionsLogsEntity))] [Serializable] public class ExceptionsLogsInPutDto : IInputDto { /// /// 访问域名 /// public string AppDomainName { get; set; } /// /// 错误页面 /// public string ErrorPage { get; set; } /// /// 用户Id /// public long UserId { get; set; } /// /// 用户Ip /// public string IP { get; set; } /// /// 错误类型 /// public string ExceptionType { get; set; } /// /// 异常描述信息 /// public string Message { get; set; } /// /// 堆栈信息 /// public string StackTrace { get; set; } /// /// 异常时间 /// public DateTime ExceptionTime { get; set; } /// /// 主键Id /// public long Id { get; set; } } }