Zhang-Hong-Lin
2025-05-27 7924008bfdcfc7a73428826fc10ae475b1f71353
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using WIDESEAWCS_Core.DB.Models;
 
namespace WIDESEAWCS_Model.Models.System
{
    /// <summary>
    /// 出库厚度历史
    /// </summary>
    [SugarTable(nameof(dt_Thickness_hty), "出库厚度历史")]
    public class dt_Thickness_hty : BaseEntity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
 
        /// <summary>
        /// 顶部左边
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "顶部左边")]
        public float topleft { get; set; }
 
        /// <summary>
        /// 顶部中间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "顶部中间")]
        public float topmiddle { get; set; }
 
        /// <summary>
        /// 顶部右边
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "顶部右边")]
        public float topright { get; set; }
 
        /// <summary>
        /// 中间左边
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "中间左边")]
        public float centreleft { get; set; }
 
        /// <summary>
        /// 中间中心
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "中间中心")]
        public float centremiddle { get; set; }
 
        /// <summary>
        /// 中间右边
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "中间右边")]
        public float centreright { get; set; }
 
        /// <summary>
        /// 底部左边
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "底部左边")]
        public float bottomleft { get; set; }
 
        /// <summary>
        /// 底部右边
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "底部右边")]
        public float bottomright { get; set; }
 
        /// <summary>
        /// 合格
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "合格")]
        public int qualified { get; set; }
 
        /// <summary>
        /// 区间值
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "区间值")]
        public string interval { get; set; }
    }
}