tx
2025-04-09 fa7510e1ed63df0366787fa4ed1b3db6426d2b46
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
using System;
using System.ComponentModel.DataAnnotations;
 
namespace TProduct.Model
{
    /// <summary>
    /// 测试
    /// </summary>
    public partial class ValveFeatTestRecord : System.ICloneable
    {
 
        public ValveFeatTestRecord() { }
 
        public ValveFeatTestRecord(ValveFeatTestRecord rhs)
        {
            this.ID = rhs.ID;
            this.TestItemID = rhs.TestItemID;
 
            this.Time = rhs.Time;
 
 
            this.MonitorRecords = rhs.MonitorRecords;
            this.RecordParas = rhs.RecordParas;
            this.RecordType = rhs.RecordType;
 
 
            this.Degree = rhs.Degree;
            this.Density = rhs.Density;
            this.Viscosity = rhs.Viscosity;
            this.Flow = rhs.Flow;
 
            this.P1 = rhs.P1;
            this.P2 = rhs.P2;
            this.P3 = rhs.P3;
            this.V = rhs.V;
            this.Re = rhs.Re;
            this.DeltaP = rhs.DeltaP;
            this.Kv = rhs.Kv;
            this.Rc = rhs.Rc;
        }
 
 
        /// <summary>
        /// 标识
        /// </summary>
        [Display(Name = "标识")]
        public long ID { get; set; }
 
        /// <summary>
        /// 标识
        /// </summary>
        [Display(Name = "TestItem标识")]
        public long TestItemID { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        [Display(Name = "创建时间")]
        public DateTime Time { get; set; }
 
        /// <summary>
        /// 开度
        /// </summary> 
        [Display(Name = "开度")]
        public double Degree { get; set; }
 
 
 
        /// <summary>
        /// 密度
        /// </summary> 
        [Display(Name = "密度")]
        public double Density { get; set; }
 
        /// <summary>
        /// 黏度
        /// </summary>
        [Display(Name = "黏度")]
        public double Viscosity { get; set; }
 
        /// <summary>
        /// 流量
        /// </summary>
        [Display(Name = "流量")]
        public double Flow { get; set; }
 
        /// <summary>
        /// P1
        /// </summary>
        [Display(Name = "P1")]
        public double P1 { get; set; }
 
        /// <summary>
        /// P2
        /// </summary>
        [Display(Name = "P2")]
        public double P2 { get; set; }
 
        /// <summary>
        /// P3
        /// </summary>
        [Display(Name = "P3")]
        public double P3 { get; set; }
 
        /// <summary>
        /// 流速
        /// </summary>
        [Display(Name = "流速")]
        public double V { get; set; }
 
 
        /// <summary>
        /// 雷诺数
        /// </summary>
        [Display(Name = "雷诺数")]
        public double Re { get; set; }
 
        /// <summary>
        /// 压差
        /// </summary>
        [Display(Name = "压差")]
        public double DeltaP { get; set; }
 
 
        /// <summary>
        /// 流量系数Kv
        /// </summary> 
        [Display(Name = "流量系数Kv")]
        public double Kv { get; set; }
 
        /// <summary>
        /// 流阻系数 Rc
        /// </summary>
        [Display(Name = "流阻系数Rc")]
        public double Rc { get; set; }
 
 
        /// <summary>
        /// 仪表数据打包
        /// </summary>
        [Display(Name = "仪表数据打包")]
        public string MonitorRecords { get; set; }
 
 
        /// <summary>
        /// 测试点参数打包
        /// </summary>
        [Display(Name = "测试点参数打包")]
        public string RecordParas { get; set; }
 
 
        /// <summary>
        /// 记录类型 0 测试 1 导入
        /// </summary>
        [Display(Name = "记录类型")]
        public eRecordType RecordType { get; set; }
 
 
        public ValveFeatTestRecord Clone()
        {
            return (ValveFeatTestRecord)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
    }
}