招聘后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.6 KiB

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
{
/// <summary>
/// 系统日志,数据实体对象
/// </summary>
[AppDBContext("DefaultDb")]
[Table("rm_exceptions_logs")]
[Serializable]
public class ExceptionsLogsEntity : BaseEntity
{
/// <summary>
/// 默认构造函数(需要初始化属性的在此处理)
/// </summary>
public ExceptionsLogsEntity()
{
IsDeleted = true;
CreatedTime = DateTime.Now;
}
/// <summary>
/// 访问域名
/// </summary>
public string AppDomainName { get; set; }
/// <summary>
/// 错误页面
/// </summary>
public string ErrorPage { get; set; }
/// <summary>
/// 用户名
/// </summary>
public string UserName { get; set; }
/// <summary>
/// 用户Ip
/// </summary>
public string IP { get; set; }
/// <summary>
/// 错误类型
/// </summary>
public string ExceptionType { get; set; }
/// <summary>
/// 异常描述信息
/// </summary>
public string Message { get; set; }
/// <summary>
/// 堆栈信息
/// </summary>
public string StackTrace { get; set; }
/// <summary>
/// 异常时间
/// </summary>
public DateTime ExceptionTime { get; set; }
}
}