刘磊
2025-04-19 823752496e2a4cdb6a1fb36227cd15b8b7135336
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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; }
    }
}