using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace Wms.Screen.SqlSugar.ZhongTian { [SugarTable("Sys_Log")] public class SysLog { /// /// Id /// [SugarColumn(IsPrimaryKey = true, ColumnDataType = "bigint", IsNullable = false)] public long Id { get; set; } /// /// WarehouseId /// [SugarColumn(ColumnDataType = "bigint", IsNullable = false)] public long WarehouseId { get; set; } /// /// TypeNum /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int TypeNum { get; set; } /// /// AppTypeNum /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int AppTypeNum { get; set; } /// /// ContentText /// [SugarColumn(ColumnDataType = "nvarchar", Length = 1000, IsNullable = true)] public string ContentText { get; set; } /// /// Method /// [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)] public string Method { get; set; } /// /// IsSucc /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int IsSucc { get; set; } /// /// ReqUrl /// [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)] public string ReqUrl { get; set; } /// /// MethodText /// [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)] public string MethodText { get; set; } /// /// ParamJson /// [SugarColumn(ColumnDataType = "nvarchar", IsNullable = true)] public string ParamJson { get; set; } /// /// Ip /// [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)] public string Ip { get; set; } /// /// Host /// [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)] public string Host { get; set; } /// /// Browser /// [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = true)] public string Browser { get; set; } /// /// RunMs /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public int? RunMs { get; set; } /// /// LogTime /// [SugarColumn(ColumnDataType = "datetime", IsNullable = false)] public DateTime LogTime { get; set; } /// /// LogWho /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string LogWho { get; set; } } }