xiejun
2024-11-01 0496aed6e04c5084f05ce1035ba9ec38e3d4e9c7
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
package com.vci.ubcs.code.vo.webserviceModel.data;
 
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
import com.thoughtworks.xstream.annotations.XStreamImplicit;
 
import java.util.List;
 
@XStreamAlias("object")
public class DataObjectVO {
    @XStreamAsAttribute
    private String code;
    @XStreamAsAttribute
    private String  status;
    @XStreamAsAttribute
    private  String library;
    @XStreamAsAttribute
    private String classCode;
    @XStreamImplicit
    private List<PropertyVO> pro;
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    public String getLibrary() {
        return library;
    }
 
    public void setLibrary(String library) {
        this.library = library;
    }
 
    public String getClassCode() {
        return classCode;
    }
 
    public void setClassCode(String classCode) {
        this.classCode = classCode;
    }
 
    public List<PropertyVO> getPro() {
        return pro;
    }
 
    public void setPro(List<PropertyVO> pro) {
        this.pro = pro;
    }
 
    @Override
    public String toString() {
        return "DataObjectVO{" +
                "code='" + code + '\'' +
                ", status='" + status + '\'' +
                ", library='" + library + '\'' +
                ", classCode='" + classCode + '\'' +
                ", pro=" + pro +
                '}';
    }
}