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
package com.vci.ubcs.code.utils;
 
import java.util.List;
 
public class XmlData{
    public String unique;
    public String type;//分类编号
    public String sendtype;//推送数据类型
    public String state;//其实就是datacode,也是code
    public String msg;//其实就是datamsg
    public String num;
    public String namepath;
    public String name;
    public String idpath;
    public String id;
    public Integer orderNum;
    public String parentId;
    public List<Pro> pros;
 
 
    public String getUnique() {
        return unique;
    }
 
    public void setUnique(String unique) {
        this.unique = unique;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public String getMsg() {
        return msg;
    }
 
    public void setMsg(String msg) {
        this.msg = msg;
    }
 
    public String getNum() {
        return num;
    }
 
    public void setNum(String num) {
        this.num = num;
    }
 
    public String getNamepath() {
        return namepath;
    }
 
    public void setNamepath(String namepath) {
        this.namepath = namepath;
    }
 
    public String getIdpath() {
        return idpath;
    }
 
    public void setIdpath(String idpath) {
        this.idpath = idpath;
    }
 
    public List<Pro> getPros() {
        return pros;
    }
 
    public String getSendtype() {
        return sendtype;
    }
 
    public void setSendtype(String sendtype) {
        this.sendtype = sendtype;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public void setPros(List<Pro> pros) {
        this.pros = pros;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public int getOrderNum() {
        return orderNum;
    }
 
    public void setOrderNum(int orderNum) {
        this.orderNum = orderNum;
    }
 
    public String getParentId() {
        return parentId;
    }
 
    public void setParentId(String parentId) {
        this.parentId = parentId;
    }
 
    @Override
    public String toString() {
        return "XmlData{" +
                "unique='" + unique + '\'' +
                ", type='" + type + '\'' +
                ", sendtype='" + sendtype + '\'' +
                ", state='" + state + '\'' +
                ", msg='" + msg + '\'' +
                ", num='" + num + '\'' +
                ", namepath='" + namepath + '\'' +
                ", name='" + name + '\'' +
                ", idpath='" + idpath + '\'' +
                ", id='" + id + '\'' +
                ", orderNum='" + orderNum + '\'' +
                ", parentId='" + parentId + '\'' +
                ", pros=" + pros +
                '}';
    }
}