using System;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Core.DataManager;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
///
/// 系统日志,数据实体对象
///
[AppDBContext("DefaultDb")]
[Table("rm_exceptions_logs")]
[Serializable]
public class ExceptionsLogsEntity : BaseEntity
{
///
/// 默认构造函数(需要初始化属性的在此处理)
///
public ExceptionsLogsEntity()
{
IsDeleted = true;
CreatedTime = DateTime.Now;
}
///
/// 访问域名
///
public string AppDomainName { get; set; }
///
/// 错误页面
///
public string ErrorPage { get; set; }
///
/// 用户名
///
public string UserName { 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; }
}
}