yanjinhui
4 天以前 79cea1bc2685b73f2f6a29379f37580ca1a38c79
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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.DB.Models;
using SqlSugar;
using OfficeOpenXml.FormulaParsing.Excel.Functions.Math;
 
namespace WIDESEAWCS_Model.Models
{
    [SugarTable(nameof(Dt_trackloginfo), "接口日志")]
    public class Dt_trackloginfo : BaseEntity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int tracklog_id { get; set; }
 
        /// <summary>
        /// 操作名称
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 100, ColumnDescription = "操作名称")]
        public string tracklog_name { get; set; }
 
        /// <summary>
        /// 参数传递内容
        /// </summary>
        [SugarColumn(IsNullable = false,  ColumnDataType = "nvarchar(max)", ColumnDescription = "参数传递内容")]
        public string tracklog_content { get; set; }
 
        /// <summary>
        /// 类型
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDataType = "nvarchar(20)", ColumnDescription = "类型")]
        public string tracklog_type { get; set; }
 
        /// <summary>
        /// 描述
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDataType = "nvarchar(max)", ColumnDescription = "描述")]
        public string tracklog_des { get; set; }
 
        /// <summary>
        /// 日志代码
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDataType = "nvarchar(20)", ColumnDescription = "日志代码")]
        public string tracklog_code { get; set; }
 
        /// <summary>
        /// 错误信息
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(max)", ColumnDescription = "错误信息")]
        public string tracklog_message { get; set; }
 
        /// <summary>
        /// 操作者
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDataType = "nvarchar(40)", ColumnDescription = "操作者")]
        public string tracklog_operator { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDataType = "datetime", ColumnDescription = "创建时间")]
        public DateTime tracklog_createtime { get; set; }
    }
}