xiejun
2023-07-05 b04005e136d7de620bb66660cc268f5750ca7b42
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
package com.vci.ubcs.code.vo.webserviceModel.coderule;
 
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
 
@XStreamAlias("classify")
public class ResultClassifyVO {
    /**
     * 分类id
     */
    @XStreamAsAttribute
    private String id;
    /***
     * 分类名称
     */
    @XStreamAsAttribute
    private String name;
    /***
     * 父节点id
     */
    @XStreamAsAttribute
    private String pid;
    /***
     * 分类代号
     */
    @XStreamAsAttribute
    private String classCode;
    /***
     * 描述
     */
    @XStreamAsAttribute
    private  String description;
    /***
     * 分类链接路径
     */
    @XStreamAsAttribute
    private  String fullPathName;
    /***
     * 分类状态
     */
    @XStreamAsAttribute
    private String lcStatus;
    /***
     * 规则id
     */
    @XStreamAsAttribute
    private String codeRuleId;
 
    /***
     * 规则id
     */
    @XStreamAsAttribute
    private ResultCodeRuleVO codeRule;
    /***
     * 是否为叶子节点
     */
    @XStreamAsAttribute
    private boolean isLeaf;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getPid() {
        return pid;
    }
 
    public void setPid(String pid) {
        this.pid = pid;
    }
 
    public String getClassCode() {
        return classCode;
    }
 
    public void setClassCode(String classCode) {
        this.classCode = classCode;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getFullPathName() {
        return fullPathName;
    }
 
    public void setFullPathName(String fullPathName) {
        this.fullPathName = fullPathName;
    }
 
    public String getLcStatus() {
        return lcStatus;
    }
 
    public void setLcStatus(String lcStatus) {
        this.lcStatus = lcStatus;
    }
 
    public String getCodeRuleId() {
        return codeRuleId;
    }
 
    public void setCodeRuleId(String codeRuleId) {
        this.codeRuleId = codeRuleId;
    }
 
    public boolean isLeaf() {
        return isLeaf;
    }
 
    public void setLeaf(boolean leaf) {
        isLeaf = leaf;
    }
 
    public ResultCodeRuleVO getCodeRule() {
        return codeRule;
    }
 
    public void setCodeRule(ResultCodeRuleVO codeRule) {
        this.codeRule = codeRule;
    }
 
    @Override
    public String toString() {
        return "ResultClassifyVO{" +
            "id='" + id + '\'' +
            ", name='" + name + '\'' +
            ", pid='" + pid + '\'' +
            ", classCode='" + classCode + '\'' +
            ", description='" + description + '\'' +
            ", fullPathName='" + fullPathName + '\'' +
            ", lcStatus='" + lcStatus + '\'' +
            ", codeRuleId='" + codeRuleId + '\'' +
            ", codeRule=" + codeRule +
            ", isLeaf=" + isLeaf +
            '}';
    }
}