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
|
{
|
/// <summary>
|
/// 主键
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int ID { get; set; }
|
|
/// <summary>
|
/// 适用车型 多个用,隔开
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 30, ColumnDescription = "适用车型")]
|
public string CarType { get; set; }
|
|
/// <summary>
|
/// 动拖属性
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "动拖属性")]
|
public string mttype { get; set; }
|
|
/// <summary>
|
/// 新旧属性
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "新旧属性")]
|
public string neworold { get; set; }
|
|
/// <summary>
|
/// 毂孔等级
|
/// </summary>
|
[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; }
|
|
/// <summary>
|
/// 是否包含毂孔均值
|
/// </summary>
|
[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; }
|
}
|
}
|