ludc
2023-03-27 82a410d9ec7a5d15eed27e9990cff371feab43a1
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
package org.springblade.code.vo.universalInter.result.xml;
 
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
 
import java.util.List;
 
/***
 * 返回结果对象
 */
@XStreamAlias("data")
public class XMLResultSystemVO {
    /***
     * 错误标识
     */
    @XStreamAsAttribute
    private String errorid;
    /***
     * 消息
     */
    @XStreamAlias("msg")
    private  String msg;
    /**
     * 返回结果对象
     */
    @XStreamAlias("classifys")
    private List<XMLResultClassfyVO> classifys;
 
    public String getErrorid() {
        return errorid;
    }
 
    public void setErrorid(String errorid) {
        this.errorid = errorid;
    }
 
    public String getMsg() {
        return msg;
    }
 
    public void setMsg(String msg) {
        this.msg = msg;
    }
 
    public List<XMLResultClassfyVO> getClassifys() {
        return classifys;
    }
 
    public void setClassifys(List<XMLResultClassfyVO> classifys) {
        this.classifys = classifys;
    }
 
    @Override
    public String toString() {
        return "ResultSystemVO{" +
                "errorid='" + errorid + '\'' +
                ", msg='" + msg + '\'' +
                ", classifys=" + classifys +
                '}';
    }
}