using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.BZModels.Models.UserCenterManager { [Tenant("usercenter")] [SugarTable("Sys_Log")] public class SysLog: BaseModel { /// /// 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; } } }