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
62
package org.springblade.code.vo.universalInter.result.xml;
 
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
 
/***
 * object节点
 * @author xj
 */
@XStreamAlias("object")
public class XMLResultDataObjectDetailDO {
    @XStreamAsAttribute
    private String  id;
    @XStreamAsAttribute
    private  String errorid;
    @XStreamAsAttribute
    private String code;
    @XStreamAlias("msg")
    private String msg;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getErrorid() {
        return errorid;
    }
 
    public void setErrorid(String errorid) {
        this.errorid = errorid;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getMsg() {
        return msg;
    }
 
    public void setMsg(String msg) {
        this.msg = msg;
    }
 
    @Override
    public String toString() {
        return "ResultDataObjectDetailDO{" +
                "id='" + id + '\'' +
                ", errorid='" + errorid + '\'' +
                ", code='" + code + '\'' +
                ", msg='" + msg + '\'' +
                '}';
    }
}