using SqlSugar; namespace WCS.WorkEngineering.Model.WMS { /// /// 异常信息 /// [Tenant("fj")] [SugarTable("Base_ErrorInfo")] public class BaseErrorInfo { /// /// ID /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "ID")] public int ID { get; set; } /// /// 业务名称 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string BusName { get; set; } /// /// 业务名称 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string BarCode { get; set; } /// /// 异常描述信息 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 250, IsNullable = true)] public string Message { get; set; } /// /// 次数 /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public int Count { get; set; } /// /// memo /// [SugarColumn(ColumnDataType = "nvarchar", Length = 250, IsNullable = true)] public string Memo { get; set; } /// /// AddTime /// [SugarColumn(ColumnDataType = "datetime", IsNullable = false)] public DateTime AddTime { get; set; } = DateTime.Now; } }