baotian
2024-06-04 b959135a1139fb66646523d92e5bd20c5910f283
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
using Microsoft.EntityFrameworkCore;
using OfficeOpenXml.FormulaParsing.Excel.Functions.Math;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWare.Wms.Core
{
    [Table("SystemLog")]
    [Comment("系统日志表")]
    public class SystemLog : DEntityBase
    {
        /// <summary>
        /// 日志时间
        /// </summary>
        [Comment("日志时间")]
        public DateTime LogTime { get; set; }
 
        /// <summary>
        /// 席位ID
        /// </summary>
        [Comment("线程代码")]
        [MaxLength(32)]
        public string LogSource { get; set; }
 
        /// <summary>
        /// 用户ID
        /// </summary>
        [Comment("用户ID")]
        [MaxLength(32)]
        public string UserID { get; set; }
 
        /// <summary>
        /// 日志内容
        /// </summary>
        [Comment("日志内容")]
        [MaxLength(8000)]
        public string LogContent { get; set; }
 
        /// <summary>
        /// 描述信息
        /// </summary>
        [Comment("描述信息")]
        [MaxLength(32)]
        public string Description { get; set; }
 
 
    }
}