namespace YBEE.EQM.Application
{
///
/// 异常日志参数
///
public class SysLogExOutput
{
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 DateTime? ExceptionTime { get; set; }
}
}