Admin
2025-12-02 9e42f0dafa019f5ecf6b0ff425ecb966b002171e
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
 
namespace WIDESEA.Common
{
    [XmlRoot("ROOT")]
    public class getInfoByBearingXMLEntity
    {
        [XmlElement]
        public string FLAG { get; set; }
        [XmlElement]
        public string ERROR { get; set; }
        /// <summary>
        /// 轴承条码
        /// </summary>
        [XmlElement]
        public string BEARING { get; set; }
        /// <summary>
        /// 车型
        /// </summary>
        [XmlElement]
        public string TRAINTYPE { get; set; }
        /// <summary>
        /// 厂家
        /// </summary>
        [XmlElement]
        public string MANUFACTOR { get; set; }
        /// <summary>
        /// 轴承类型<
        /// </summary>
        [XmlElement]
        public string BEARTYPE { get; set; }
        /// <summary>
        /// 检修次数
        /// </summary>
        [XmlElement]
        public string MAINFREQ { get; set; }
 
        /// <summary>
        /// 批次
        /// </summary>
        [XmlElement]
        public string RKDH { get; set; }
 
        
        [XmlElement]
        public string REMARK { get; set; }
 
        public string ProductDate { get;set; }
    }
 
 
 
    [XmlRoot("sendresult")]
    public class sendresult
    {
        [XmlElement]
        public string billpk { get; set; }
        [XmlElement]
        public string bdocid { get; set; }
        [XmlElement]
        public string filename { get; set; }
 
        [XmlElement]
        public string resultcode { get; set; }
 
        [XmlElement]
        public string resultdescription { get; set; }
        [XmlElement]
        public string content { get; set; }
 
        [XmlElement]
        public invaliddoc invaliddoc { get; set; }
 
    }
    [XmlRoot("invaliddoc")]
    public class invaliddoc
    {
        [XmlElement]
        public List<docitem> docitem { get; set; }
    }
 
    [XmlRoot("docitem")]
    public class docitem
    {
        [XmlAttribute]
        public string name { get; set; }
 
        [XmlText]
        public string value { get; set; }
    }
}