WinderAccessory.cs 13.4 KB
Newer Older
1 2
using Misc;
using System.ComponentModel;
3 4 5

namespace FLY.DownBlowing.Common
{
6
    public class WinderAccessory : INotifyPropertyChanged
7
    {
8
        public WinderAccessory()
9 10 11 12 13 14 15 16
        {

        }
        #region 辅助代码生成
        /// <summary>
        /// 气垫风机_读
        /// </summary>
        [Description("气垫风机_读")]
17
        public bool IsCushionFanOn { get; set; }
18 19 20 21 22

        /// <summary>
        /// 气垫风机_写(按1)
        /// </summary>
        [Description("气垫风机_写(按1)")]
23
        public bool IsCushionFanOnSet { get; set; }
24 25 26 27 28

        /// <summary>
        /// 气垫风机1状态
        /// </summary>
        [Description("气垫风机1状态")]
29
        public bool IsCushionFan1On { get; set; }
30 31 32 33 34

        /// <summary>
        /// 气垫风机2状态
        /// </summary>
        [Description("气垫风机2状态")]
35
        public bool IsCushionFan2On { get; set; }
36 37

        /// <summary>
38
        /// 一牵压辊闭合_读(1合,0离)
39
        /// </summary>
40
        [Description("一牵压辊闭合_读(1合,0离)")]
41
        public bool IsT1CalenderRollerClosed { get; set; }
42 43 44 45 46

        /// <summary>
        /// 一牵压辊闭合_写(按1)
        /// </summary>
        [Description("一牵压辊闭合_写(按1)")]
47
        public bool IsT1CalenderRollerClosedSet { get; set; }
48 49 50 51 52

        /// <summary>
        /// 一牵固定辊运行
        /// </summary>
        [Description("一牵固定辊运行")]
53
        public bool IsT1FixedRollerOn { get; set; }
54 55

        /// <summary>
56
        /// 一牵引当前速度(XXXX.X)
57
        /// </summary>
58 59 60 61 62 63 64 65
        [Description("一牵引当前速度(XXXX.X)")]
        public float T1Velocity { get; set; }

        /// <summary>
        /// 一牵引设定速度(XXXX.X)
        /// </summary>
        [Description("一牵引设定速度(XXXX.X)")]
        public float T1VelocitySet { get; set; }
66 67

        /// <summary>
68
        /// 牵引速度应用(按1松0)
69
        /// </summary>
70
        [Description("牵引速度应用(按1松0)")]
71
        public bool IsT1VelocityChanged { get; set; }
72 73

        /// <summary>
74
        /// 三牵压辊闭合_读(1合,0离)
75
        /// </summary>
76
        [Description("三牵压辊闭合_读(1合,0离)")]
77
        public bool IsT3CalenderRollerClosed { get; set; }
78 79 80 81 82

        /// <summary>
        /// 三牵压辊闭合_写(按1)
        /// </summary>
        [Description("三牵压辊闭合_写(按1)")]
83
        public bool IsT3CalenderRollerClosedSet { get; set; }
84 85 86 87 88

        /// <summary>
        /// 三牵固定辊运行
        /// </summary>
        [Description("三牵固定辊运行")]
89
        public bool IsT3FixedRollerOn { get; set; }
90 91

        /// <summary>
92
        /// 二牵压辊闭合_读(1合,0离)
93
        /// </summary>
94
        [Description("二牵压辊闭合_读(1合,0离)")]
95
        public bool IsT2CalenderRollerClosed { get; set; }
96 97 98 99 100

        /// <summary>
        /// 二牵压辊闭合_写(按1)
        /// </summary>
        [Description("二牵压辊闭合_写(按1)")]
101
        public bool IsT2CalenderRollerClosedSet { get; set; }
102 103 104 105 106

        /// <summary>
        /// 二牵固定辊运行
        /// </summary>
        [Description("二牵固定辊运行")]
107
        public bool IsT2FixedRollerOn { get; set; }
108 109 110 111 112

        /// <summary>
        /// 吹水风机_读
        /// </summary>
        [Description("吹水风机_读")]
113
        public bool IsWaterFanOn { get; set; }
114 115

        /// <summary>
116
        /// 吹水风机_写(按1)
117
        /// </summary>
118
        [Description("吹水风机_写(按1)")]
119
        public bool IsWaterFanOnSet { get; set; }
120 121 122 123 124

        /// <summary>
        /// 一牵引电流(A)(XX.X)
        /// </summary>
        [Description("一牵引电流(A)(XX.X)")]
125
        public float T1Current { get; set; }
126 127 128 129 130

        /// <summary>
        /// 一牵引控制开关_读
        /// </summary>
        [Description("一牵引控制开关_读")]
131
        public bool IsT1On { get; set; }
132 133

        /// <summary>
134
        /// 一牵引控制开关_写(按1松0)
135
        /// </summary>
136
        [Description("一牵引控制开关_写(按1松0)")]
137
        public bool IsT1OnSet { get; set; }
138 139 140 141 142

        /// <summary>
        /// 二牵引设定张力(kg)(XX.X)
        /// </summary>
        [Description("二牵引设定张力(kg)(XX.X)")]
143
        public float T2TensionSet { get; set; }
144 145 146 147 148

        /// <summary>
        /// 二牵引当前张力(kg)(XX.X)
        /// </summary>
        [Description("二牵引当前张力(kg)(XX.X)")]
149
        public float T2Tension { get; set; }
150 151 152 153 154

        /// <summary>
        /// 二牵引电流(A)
        /// </summary>
        [Description("二牵引电流(A)")]
155
        public float T2Current { get; set; }
156

157 158 159 160 161 162
        /// <summary>
        /// 二牵引控制模式为手动(0自动1手动)
        /// </summary>
        [Description("二牵引控制模式为手动(0自动1手动)")]
        public bool IsT2Manual { get; set; }

163 164 165 166
        /// <summary>
        /// 二牵引控制开关_读
        /// </summary>
        [Description("二牵引控制开关_读")]
167
        public bool IsT2On { get; set; }
168 169

        /// <summary>
170
        /// 二牵引控制开关_写(按1松0)
171
        /// </summary>
172
        [Description("二牵引控制开关_写(按1松0)")]
173
        public bool IsT2OnSet { get; set; }
174 175 176 177 178

        /// <summary>
        /// 三牵引设定张力(kg)(XX.X)
        /// </summary>
        [Description("三牵引设定张力(kg)(XX.X)")]
179
        public float T3TensionSet { get; set; }
180 181 182 183 184

        /// <summary>
        /// 三牵引当前张力(kg)(XX.X)
        /// </summary>
        [Description("三牵引当前张力(kg)(XX.X)")]
185
        public float T3Tension { get; set; }
186 187 188 189 190

        /// <summary>
        /// 三牵引电流(A)
        /// </summary>
        [Description("三牵引电流(A)")]
191
        public float T3Current { get; set; }
192 193 194 195 196

        /// <summary>
        /// 三牵引控制开关_读
        /// </summary>
        [Description("三牵引控制开关_读")]
197
        public bool IsT3On { get; set; }
198 199

        /// <summary>
200
        /// 三牵引控制开关_写(按1)
201
        /// </summary>
202
        [Description("三牵引控制开关_写(按1)")]
203
        public bool IsT3OnSet { get; set; }
204 205

        /// <summary>
206
        /// 旋转塔架运行电流(A)
207
        /// </summary>
208 209
        [Description("旋转塔架运行电流(A)")]
        public float RotaryCurrent { get; set; }
210 211

        /// <summary>
212
        /// 旋转塔架运行频率(Hz)
213
        /// </summary>
214 215
        [Description("旋转塔架运行频率(Hz)")]
        public float RotaryFreq { get; set; }
216 217

        /// <summary>
218
        /// 旋转塔架设定频率(Hz)
219
        /// </summary>
220 221
        [Description("旋转塔架设定频率(Hz)")]
        public float RotaryFreqSet { get; set; }
222 223

        /// <summary>
224
        /// 旋转塔架设定频率被修改
225
        /// </summary>
226 227
        [Description("旋转塔架设定频率被修改")]
        public bool IsRotaryFreqSetChanged { get; set; }
228 229

        /// <summary>
230
        /// 旋转塔架启动_读
231
        /// </summary>
232 233
        [Description("旋转塔架启动_读")]
        public bool IsRotaryOn { get; set; }
234 235

        /// <summary>
236
        /// 旋转塔架启动_写(按1松0)
237
        /// </summary>
238 239
        [Description("旋转塔架启动_写(按1松0)")]
        public bool IsRotaryOnSet { get; set; }
240 241

        /// <summary>
242
        /// 旋转塔架正转运行
243
        /// </summary>
244 245
        [Description("旋转塔架正转运行")]
        public bool IsRotaryForw { get; set; }
246 247

        /// <summary>
248
        /// 旋转塔架反转运行
249
        /// </summary>
250 251
        [Description("旋转塔架反转运行")]
        public bool IsRotaryBackw { get; set; }
252 253

        /// <summary>
254
        /// 旋转塔架复位限位
255
        /// </summary>
256 257
        [Description("旋转塔架复位限位")]
        public bool IsRotaryOrgSign { get; set; }
258 259

        /// <summary>
260
        /// 旋转塔架正转转向限位
261
        /// </summary>
262 263
        [Description("旋转塔架正转转向限位")]
        public bool IsRotaryForwTurn { get; set; }
264 265

        /// <summary>
266
        /// 旋转塔架反转转向限位
267
        /// </summary>
268 269
        [Description("旋转塔架反转转向限位")]
        public bool IsRotaryBackwTurn { get; set; }
270 271

        /// <summary>
272
        /// 旋转塔架正向机械限位
273
        /// </summary>
274 275
        [Description("旋转塔架正向机械限位")]
        public bool IsRotaryForwLimit { get; set; }
276 277

        /// <summary>
278
        /// 旋转塔架反向机械限位
279
        /// </summary>
280 281
        [Description("旋转塔架反向机械限位")]
        public bool IsRotaryBackwLimit { get; set; }
282 283

        /// <summary>
284
        /// 旋转塔架复位(按1松0)
285
        /// </summary>
286 287
        [Description("旋转塔架复位(按1松0)")]
        public bool IsRotaryOrgSet { get; set; }
288 289

        /// <summary>
290
        /// 旋转塔架复位指示
291
        /// </summary>
292 293
        [Description("旋转塔架复位指示")]
        public bool IsRotaryOrg { get; set; }
294 295

        /// <summary>
296
        /// 报警复位(按1松0)
297
        /// </summary>
298 299
        [Description("报警复位(按1松0)")]
        public bool ErrorReset { get; set; }
300 301

        /// <summary>
302
        /// 三牵引散热风机报警
303
        /// </summary>
304 305 306
        [Description("三牵引散热风机报警")]
        [IsError()]
        public bool Warning001 { get; set; }
307 308

        /// <summary>
309
        /// 三牵引变频通讯报警
310
        /// </summary>
311 312 313
        [Description("三牵引变频通讯报警")]
        [IsError()]
        public bool Warning002 { get; set; }
314 315

        /// <summary>
316
        /// 三牵引变频故障报警
317
        /// </summary>
318 319 320
        [Description("三牵引变频故障报警")]
        [IsError()]
        public bool Warning003 { get; set; }
321 322

        /// <summary>
323
        /// 一牵引风机过载报警
324
        /// </summary>
325 326 327
        [Description("一牵引风机过载报警")]
        [IsError()]
        public bool Warning004 { get; set; }
328 329

        /// <summary>
330
        /// 一牵引变频故障报警
331
        /// </summary>
332 333 334
        [Description("一牵引变频故障报警")]
        [IsError()]
        public bool Warning005 { get; set; }
335 336

        /// <summary>
337
        /// 二牵引变频故障报警
338
        /// </summary>
339 340 341
        [Description("二牵引变频故障报警")]
        [IsError()]
        public bool Warning006 { get; set; }
342 343

        /// <summary>
344
        /// 二牵引风机过载报警
345
        /// </summary>
346 347 348
        [Description("二牵引风机过载报警")]
        [IsError()]
        public bool Warning007 { get; set; }
349 350

        /// <summary>
351
        /// 旋转塔变频故障报警
352
        /// </summary>
353 354 355
        [Description("旋转塔变频故障报警")]
        [IsError()]
        public bool Warning008 { get; set; }
356 357

        /// <summary>
358
        /// 二牵拉线急停开启报警
359
        /// </summary>
360 361 362
        [Description("二牵拉线急停开启报警")]
        [IsError()]
        public bool Warning009 { get; set; }
363 364

        /// <summary>
365
        /// 电柜急停开启报警
366
        /// </summary>
367 368 369
        [Description("电柜急停开启报警")]
        [IsError()]
        public bool Warning010 { get; set; }
370 371

        /// <summary>
372
        /// 主牵引拉线急停开启报警
373
        /// </summary>
374 375 376
        [Description("主牵引拉线急停开启报警")]
        [IsError()]
        public bool Warning011 { get; set; }
377 378

        /// <summary>
379
        /// 客户急停开启报警
380
        /// </summary>
381 382 383
        [Description("客户急停开启报警")]
        [IsError()]
        public bool Warning012 { get; set; }
384 385

        /// <summary>
386
        /// 旋转塔架正转极限位报警
387
        /// </summary>
388 389 390
        [Description("旋转塔架正转极限位报警")]
        [IsError()]
        public bool Warning013 { get; set; }
391 392

        /// <summary>
393
        /// 旋转塔架反转极限位报警
394
        /// </summary>
395 396 397
        [Description("旋转塔架反转极限位报警")]
        [IsError()]
        public bool Warning014 { get; set; }
398 399

        /// <summary>
400
        /// 气垫辊1风机过载抱紧
401
        /// </summary>
402 403 404
        [Description("气垫辊1风机过载抱紧")]
        [IsError()]
        public bool Warning015 { get; set; }
405 406

        /// <summary>
407
        /// 气垫辊2风机过载报警
408
        /// </summary>
409 410 411
        [Description("气垫辊2风机过载报警")]
        [IsError()]
        public bool Warning016 { get; set; }
412 413

        /// <summary>
414
        /// 一牵引变频通讯报警
415
        /// </summary>
416 417 418
        [Description("一牵引变频通讯报警")]
        [IsError()]
        public bool Warning017 { get; set; }
419 420

        /// <summary>
421
        /// 二牵引变频通讯报警
422
        /// </summary>
423 424 425
        [Description("二牵引变频通讯报警")]
        [IsError()]
        public bool Warning018 { get; set; }
426 427

        /// <summary>
428
        /// 转塔变频通讯报警
429
        /// </summary>
430 431 432
        [Description("转塔变频通讯报警")]
        [IsError()]
        public bool Warning019 { get; set; }
433 434

        /// <summary>
435
        /// 转塔正向极限锁定!!!请复位解除
436
        /// </summary>
437 438 439
        [Description("转塔正向极限锁定!!!请复位解除")]
        [IsError()]
        public bool Warning020 { get; set; }
440 441

        /// <summary>
442
        /// 转塔反向极限锁定!!!请复位解除
443
        /// </summary>
444 445 446
        [Description("转塔反向极限锁定!!!请复位解除")]
        [IsError()]
        public bool Warning021 { get; set; }
447 448 449 450 451

        #endregion
        public event PropertyChangedEventHandler PropertyChanged;
    }
}