using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Core.DB.Models; namespace WIDESEAWCS_Model.Models { [SugarTable(nameof(Dt_ErrorInfo), "异常信息")] public class Dt_ErrorInfo : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int Id { get; set; } /// /// 站台编号 /// [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "站台编号")] public string StationCode { get; set; } /// /// CTU编号 /// [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "CTU编号")] public string RobotCode { get; set; } /// /// 错误信息 /// [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "错误信息")] public string Message { get; set; } /// /// 错误类型 /// [SugarColumn(IsNullable = true, ColumnDescription = "错误类型")] public int ErrorType { get; set; } } }