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; }
|
}
|
}
|