huanghongfeng
3 天以前 5ffc36a1db18d3112a9b50a9cf3953d7fcf21bae
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
 
namespace WIDESEA_Common.ZY
{
    /// <summary>
    /// 车轴信息
    /// </summary>
    [XmlRoot("ROOT")]
    public class CZInfo_ZY : Basic_ZY
    {
       
 
        ///// <summary>
        ///// 标识
        ///// </summary>
        //[XmlElement]
        //public string FLAG { get; set; }
 
        ///// <summary>
        ///// 错误信息
        ///// </summary>
        //[XmlElement]
        //public string ERROR { get; set; }
 
        /// <summary>
        /// 车轴条码
        /// </summary>
        [XmlElement]
        public string CZH { get; set; }
 
        /// <summary>
        /// 轮对条码
        /// </summary>
        [XmlElement]
        public string LDTM { get; set; }
 
        /// <summary>
        /// 车型
        /// </summary>
        [XmlElement]
        public string CHEXING { get; set; }
 
        /// <summary>
        /// 车轴型号
        /// </summary>
        [XmlElement]
        public string CZXH { get; set; }
 
        /// <summary>
        /// 动拖属性 M:动,T:拖  M/T:动拖通用
        /// </summary>
        [XmlElement]
        public string MTTYPE { get; set; }
 
        /// <summary>
        /// 左轮座直径A1
        /// </summary>
        [XmlElement]
        public string ZLZA1 { get; set; }
 
        /// <summary>
        /// 左轮座直径A2
        /// </summary>
        [XmlElement]
        public string ZLZA2 { get; set; }
 
        /// <summary>
        /// 左轮座直径A3
        /// </summary>
        [XmlElement]
        public string ZLZA3 { get; set; }
 
        /// <summary>
        /// 左轮座直径A
        /// </summary>
        [XmlElement]
        public string ZLZA {  get; set; }
 
        /// <summary>
        /// 左轮座直径B1
        /// </summary>
        [XmlElement]
        public string ZLZB1 { get; set; }
 
        /// <summary>
        /// 左轮座直径B2
        /// </summary>
        [XmlElement]
        public string ZLZB2 { get; set; }
 
        /// <summary>
        /// 左轮座直径B3
        /// </summary>
        [XmlElement]
        public string ZLZB3 { get; set; }
 
        /// <summary>
        /// 左轮座直径B
        /// </summary>
        [XmlElement]
        public string ZLZB { get; set; }
 
        /// <summary>
        /// 左轮座直径C1
        /// </summary>
        [XmlElement]
        public string ZLZC1 { get; set; }
 
        /// <summary>
        /// 左轮座直径C2
        /// </summary>
        [XmlElement]
        public string ZLZC2 { get; set; }
 
        /// <summary>
        /// 左轮座直径C3
        /// </summary>
        [XmlElement]
        public string ZLZC3 { get; set; }
 
        /// <summary>
        /// 左轮座直径C
        /// </summary>
        [XmlElement]
        public string ZLZC { get; set; }
 
        /// <summary>
        /// 左轮座直径
        /// </summary>
        [XmlElement]
        public string ZLZZJ { get; set; }
 
        /// <summary>
        /// 右轮座直径A1
        /// </summary>
        [XmlElement]
        public string YLZA1 { get; set; }
 
        /// <summary>
        /// 右轮座直径A2
        /// </summary>
        [XmlElement]
        public string YLZA2 { get; set; }
 
        /// <summary>
        /// 右轮座直径A3
        /// </summary>
        [XmlElement]
        public string YLZA3 { get; set; }
 
        /// <summary>
        /// 右轮座直径A
        /// </summary>
        [XmlElement]
        public string YLZA { get; set; }
 
        /// <summary>
        /// 右轮座直径B1
        /// </summary>
        [XmlElement]
        public string YLZB1 { get; set; }
 
        /// <summary>
        /// 右轮座直径B2
        /// </summary>
        [XmlElement]
        public string YLZB2 { get; set; }
 
        /// <summary>
        /// 右轮座直径B3
        /// </summary>
        [XmlElement]
        public string YLZB3 { get; set; }
 
        /// <summary>
        /// 右轮座直径B
        /// </summary>
        [XmlElement]
        public string YLZB { get; set; }
 
        /// <summary>
        /// 右轮座直径C1
        /// </summary>
        [XmlElement]
        public string YLZC1 { get; set; }
 
        /// <summary>
        /// 右轮座直径C2
        /// </summary>
        [XmlElement]
        public string YLZC2 { get; set; }
 
        /// <summary>
        /// 右轮座直径C3
        /// </summary>
        [XmlElement]
        public string YLZC3 { get; set; }
 
        /// <summary>
        /// 右轮座直径C
        /// </summary>
        [XmlElement]
        public string YLZC { get; set; }
 
        /// <summary>
        /// 右轮座直径
        /// </summary>
        [XmlElement]
        public string YLZZJ { get; set; }
 
        /// <summary>
        /// 左轮座等级
        /// </summary>
        [XmlElement]
        public string ZLZDJ { get; set; }
 
        /// <summary>
        /// 右轮座等级
        /// </summary>
        [XmlElement]
        public string YLZDJ { get; set; }
 
        /// <summary>
        /// 维修任务
        /// </summary>
        [XmlElement]
        public string WXRW { get; set; }
    }
 
 
    [XmlRoot("ROOT")]
    public class WheelSetMeasurement : CZInfo_ZY
    {
        // Left disc seat diameters
        /// <summary>
        /// 左盘座直径A1
        /// </summary>
        [XmlElement("ZPZA1")]
        public string ZPZA1 { get; set; }
 
        /// <summary>
        /// 左盘座直径A2
        /// </summary>
        [XmlElement("ZPZA2")]
        public string ZPZA2 { get; set; }
 
        /// <summary>
        /// 左盘座直径A3
        /// </summary>
        [XmlElement("ZPZA3")]
        public string ZPZA3 { get; set; }
 
        /// <summary>
        /// 左盘座直径A
        /// </summary>
        [XmlElement("ZPZA")]
        public string ZPZA { get; set; }
 
        /// <summary>
        /// 左盘座直径B1
        /// </summary>
        [XmlElement("ZPZB1")]
        public string ZPZB1 { get; set; }
 
        /// <summary>
        /// 左盘座直径B2
        /// </summary>
        [XmlElement("ZPZB2")]
        public string ZPZB2 { get; set; }
 
        /// <summary>
        /// 左盘座直径B3
        /// </summary>
        [XmlElement("ZPZB3")]
        public string ZPZB3 { get; set; }
 
        /// <summary>
        /// 左盘座直径B
        /// </summary>
        [XmlElement("ZPZB")]
        public string ZPZB { get; set; }
 
        /// <summary>
        /// 左盘座直径C1
        /// </summary>
        [XmlElement("ZPZC1")]
        public string ZPZC1 { get; set; }
 
        /// <summary>
        /// 左盘座直径C2
        /// </summary>
        [XmlElement("ZPZC2")]
        public string ZPZC2 { get; set; }
 
        /// <summary>
        /// 左盘座直径C3
        /// </summary>
        [XmlElement("ZPZC3")]
        public string ZPZC3 { get; set; }
 
        /// <summary>
        /// 左盘座直径C
        /// </summary>
        [XmlElement("ZPZC")]
        public string ZPZC { get; set; }
 
        /// <summary>
        /// 左盘座直径
        /// </summary>
        [XmlElement("ZPZZJ")]
        public string ZPZZJ { get; set; }
 
        // Middle disc seat diameters
        /// <summary>
        /// 中盘座直径A1
        /// </summary>
        [XmlElement("MPZA1")]
        public string MPZA1 { get; set; }
 
        /// <summary>
        /// 中盘座直径A2
        /// </summary>
        [XmlElement("MPZA2")]
        public string MPZA2 { get; set; }
 
        /// <summary>
        /// 中盘座直径A3
        /// </summary>
        [XmlElement("MPZA3")]
        public string MPZA3 { get; set; }
 
        /// <summary>
        /// 中盘座直径A
        /// </summary>
        [XmlElement("MPZA")]
        public string MPZA { get; set; }
 
        /// <summary>
        /// 中盘座直径B1
        /// </summary>
        [XmlElement("MPZB1")]
        public string MPZB1 { get; set; }
 
        /// <summary>
        /// 中盘座直径B2
        /// </summary>
        [XmlElement("MPZB2")]
        public string MPZB2 { get; set; }
 
        /// <summary>
        /// 中盘座直径B3
        /// </summary>
        [XmlElement("MPZB3")]
        public string MPZB3 { get; set; }
 
        /// <summary>
        /// 中盘座直径B
        /// </summary>
        [XmlElement("MPZB")]
        public string MPZB { get; set; }
 
        /// <summary>
        /// 中盘座直径C1
        /// </summary>
        [XmlElement("MPZC1")]
        public string MPZC1 { get; set; }
 
        /// <summary>
        /// 中盘座直径C2
        /// </summary>
        [XmlElement("MPZC2")]
        public string MPZC2 { get; set; }
 
        /// <summary>
        /// 中盘座直径C3
        /// </summary>
        [XmlElement("MPZC3")]
        public string MPZC3 { get; set; }
 
        /// <summary>
        /// 中盘座直径C
        /// </summary>
        [XmlElement("MPZC")]
        public string MPZC { get; set; }
 
        /// <summary>
        /// 中盘座直径
        /// </summary>
        [XmlElement("MPZZJ")]
        public string MPZZJ { get; set; }
 
        // Right disc seat diameters
        /// <summary>
        /// 右盘座直径A1
        /// </summary>
        [XmlElement("YPZA1")]
        public string YPZA1 { get; set; }
 
        /// <summary>
        /// 右盘座直径A2
        /// </summary>
        [XmlElement("YPZA2")]
        public string YPZA2 { get; set; }
 
        /// <summary>
        /// 右盘座直径A3
        /// </summary>
        [XmlElement("YPZA3")]
        public string YPZA3 { get; set; }
 
        /// <summary>
        /// 右盘座直径A
        /// </summary>
        [XmlElement("YPZA")]
        public string YPZA { get; set; }
 
        /// <summary>
        /// 右盘座直径B1
        /// </summary>
        [XmlElement("YPZB1")]
        public string YPZB1 { get; set; }
 
        /// <summary>
        /// 右盘座直径B2
        /// </summary>
        [XmlElement("YPZB2")]
        public string YPZB2 { get; set; }
 
        /// <summary>
        /// 右盘座直径B3
        /// </summary>
        [XmlElement("YPZB3")]
        public string YPZB3 { get; set; }
 
        /// <summary>
        /// 右盘座直径B
        /// </summary>
        [XmlElement("YPZB")]
        public string YPZB { get; set; }
 
        /// <summary>
        /// 右盘座直径C1
        /// </summary>
        [XmlElement("YPZC1")]
        public string YPZC1 { get; set; }
 
        /// <summary>
        /// 右盘座直径C2
        /// </summary>
        [XmlElement("YPZC2")]
        public string YPZC2 { get; set; }
 
        /// <summary>
        /// 右盘座直径C3
        /// </summary>
        [XmlElement("YPZC3")]
        public string YPZC3 { get; set; }
 
        /// <summary>
        /// 右盘座直径C
        /// </summary>
        [XmlElement("YPZC")]
        public string YPZC { get; set; }
 
        /// <summary>
        /// 右盘座直径
        /// </summary>
        [XmlElement("YPZZJ")]
        public string YPZZJ { get; set; }
    }
}