using AngleSharp.Text; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.DB.Models; namespace WIDESEA_Model.Models { [SugarTable(nameof(Dt_SelectionStandards), "选配标准")] public class Dt_SelectionStandards : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int ID { get; set; } /// /// 适用车型 多个用,隔开 /// [SugarColumn(IsNullable = false, Length = 30, ColumnDescription = "适用车型")] public string CarType { get; set; } /// /// 动拖属性 /// [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "动拖属性")] public string mttype { get; set; } /// /// 新旧属性 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "新旧属性")] public string neworold { get; set; } /// /// 毂孔等级 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "毂孔等级")] public string gkdj { get; set; } [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "过盈量下限")] public decimal lowerValue { get; set; } [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "过盈量上限")] public decimal upperValue { get; set; } /// /// 是否包含毂孔均值 /// [SugarColumn(IsNullable = true, ColumnDescription = "毂孔过盈量下限")] public bool isCantainGK { get; set; } [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "毂孔过盈量下限")] public decimal lowerValue_gk { get; set; } [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "毂孔过盈量上限")] public decimal upperValue_gk { get; set; } } }