移动系统liao
2024-07-30 306ab8865840b2637590abb6e670e5614446f24d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/***********************************************************************
 *            Project: baifenBinfa
 *        ProjectName: 核心内容管理系统                                
 *                Web: http://chuanyin.com                     
 *             Author:                                        
 *              Email: 34161541@qq.com
 *         CreateTime: 2021-06-08 22:14:59
 *        Description: 暂无
***********************************************************************/ 
using SqlSugar;
using System.ComponentModel.DataAnnotations;
 
namespace CoreCms.Net.Model.Entities
{
    /// <summary>
    /// Nlog记录表
    /// </summary>
    [SugarTable("SysNLogRecords",TableDescription = "Nlog记录表")]
    public partial class SysNLogRecords
    {
        /// <summary>
        /// Nlog记录表
        /// </summary>
        public SysNLogRecords()
        {
        }
 
        /// <summary>
        /// 序列
        /// </summary>
        [Display(Name = "序列")]
        [SugarColumn(ColumnDescription = "序列", IsPrimaryKey = true, IsIdentity = true)]
        [Required(ErrorMessage = "请输入{0}")]
        public System.Int32 id { get; set; }
        /// <summary>
        /// 时间
        /// </summary>
        [Display(Name = "时间")]
        [SugarColumn(ColumnDescription = "时间", IsNullable = true)]
        public System.DateTime? LogDate { get; set; }
        /// <summary>
        /// 级别
        /// </summary>
        [Display(Name = "级别")]
        [SugarColumn(ColumnDescription = "级别", IsNullable = true)]
        [StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
        public System.String LogLevel { get; set; }
        /// <summary>
        /// 事件日志上下文
        /// </summary>
        [Display(Name = "事件日志上下文")]
        [SugarColumn(ColumnDescription = "事件日志上下文", IsNullable = true)]
        [StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
        public System.String LogType { get; set; }
        /// <summary>
        /// 事件标题
        /// </summary>
        [Display(Name = "事件标题")]
        [SugarColumn(ColumnDescription = "事件标题", IsNullable = true)]
        [StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
        public System.String LogTitle { get; set; }
        /// <summary>
        /// 记录器名字
        /// </summary>
        [Display(Name = "记录器名字")]
        [SugarColumn(ColumnDescription = "记录器名字", IsNullable = true)]
        [StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
        public System.String Logger { get; set; }
        /// <summary>
        /// 消息
        /// </summary>
        [Display(Name = "消息")]
        [SugarColumn(ColumnDescription = "消息", IsNullable = true)]
        public System.String Message { get; set; }
        /// <summary>
        /// 异常信息
        /// </summary>
        [Display(Name = "异常信息")]
        [SugarColumn(ColumnDescription = "异常信息", IsNullable = true)]
        public System.String Exception { get; set; }
        /// <summary>
        /// 机器名称
        /// </summary>
        [Display(Name = "机器名称")]
        [SugarColumn(ColumnDescription = "机器名称", IsNullable = true)]
        [StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
        public System.String MachineName { get; set; }
        /// <summary>
        /// ip
        /// </summary>
        [Display(Name = "ip")]
        [SugarColumn(ColumnDescription = "ip", IsNullable = true)]
        [StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
        public System.String MachineIp { get; set; }
        /// <summary>
        /// 请求方式
        /// </summary>
        [Display(Name = "请求方式")]
        [SugarColumn(ColumnDescription = "请求方式", IsNullable = true)]
        [StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
        public System.String NetRequestMethod { get; set; }
        /// <summary>
        /// 请求地址
        /// </summary>
        [Display(Name = "请求地址")]
        [SugarColumn(ColumnDescription = "请求地址", IsNullable = true)]
        [StringLength(500, ErrorMessage = "【{0}】不能超过{1}字符长度")]
        public System.String NetRequestUrl { get; set; }
        /// <summary>
        /// 是否授权
        /// </summary>
        [Display(Name = "是否授权")]
        [SugarColumn(ColumnDescription = "是否授权", IsNullable = true)]
        [StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
        public System.String NetUserIsauthenticated { get; set; }
        /// <summary>
        /// 授权类型
        /// </summary>
        [Display(Name = "授权类型")]
        [SugarColumn(ColumnDescription = "授权类型", IsNullable = true)]
        [StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
        public System.String NetUserAuthtype { get; set; }
        /// <summary>
        /// 身份认证
        /// </summary>
        [Display(Name = "身份认证")]
        [SugarColumn(ColumnDescription = "身份认证", IsNullable = true)]
        [StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
        public System.String NetUserIdentity { get; set; }
    }
}