刘磊
2025-05-29 a00fcf19e692c458283015c201a0e743dd3d5ec6
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
 
namespace WIDESEA_Common.ZY
{
    [XmlRoot("ROOT")]
    public class CLInfo_ZY : Basic_ZY
    {
        //    /// <summary>
        //    /// 标识
        //    /// </summary>
        //    [XmlElement]
        //    public string FLAG { get; set; }
 
        //    /// <summary>
        //    /// 错误信息
        //    /// </summary>
        //    [XmlElement]
        //    public string ERROR { get; set; }
 
        /// <summary>
        /// 车轮条码
        /// </summary>
        [XmlElement]
        public string CLH { get; set; }
 
        /// <summary>
        /// 轮对条码
        /// </summary>
        [XmlElement]
        public string LDTM { get; set; }
 
        /// <summary>
        /// 车型
        /// </summary>
        [XmlElement]
        public string CHEXING { get; set; }
 
        /// <summary>
        /// 车组号
        /// </summary>
        [XmlElement]
        public string LCCH { get; set; }
 
        /// <summary>
        /// 轮对号
        /// </summary>
        [XmlElement]
        public string LDH { get; set; }
 
        /// <summary>
        /// 轮对型号
        /// </summary>
        [XmlElement]
        public string LDXH { get; set; }
 
        /// <summary>
        /// 动拖属性 M:动,T:拖  M/T:动拖通用
        /// </summary>
        [XmlElement]
        public string MTTYPE { get; set; }
 
        /// <summary>
        /// 新旧属性   1:旧  0 :新
        /// </summary>
        [XmlElement]
        public string NEWOLD { get; set; }
 
        /// <summary>
        /// 车轮属性
        /// </summary>
        [XmlElement]
        public string CLSX { get; set; }
 
        /// <summary>
        /// 毂孔等级
        /// </summary>
        [XmlElement]
        public string GKDJ { get; set; }
 
        /// <summary>
        /// 毂孔a界面均值
        /// </summary>
        [XmlElement]
        public string GKZJA { get; set; }
 
        /// <summary>
        /// 毂孔b界面均值
        /// </summary>
        [XmlElement]
        public string GKZJB { get; set; }
 
        /// <summary>
        /// 毂孔c界面均值
        /// </summary>
        [XmlElement]
        public string GKZJC { get; set; }
 
        /// <summary>
        /// 配属局
        /// </summary>
        [XmlElement]
        public string PSJ { get; set; }
 
        /// <summary>
        /// 毂孔均值
        /// </summary>
        [XmlElement]
        public string gkcc { get; set; }
 
        /// <summary>
        /// 轮径值
        /// </summary>
        [XmlElement]
        public string LJZ { get; set; }
 
        /// <summary>
        /// 预估轮径值
        /// </summary>
        [XmlElement]
        public string YGLJ { get; set; }
 
        /// <summary>
        /// 入库时间
        /// </summary>
        [XmlElement]
        public string RKSJ { get; set; }
        
        /// <summary>
        /// 轮缘
        /// </summary>
        [XmlElement]
        public string LYH { get; set; }
    }
}