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
package org.springblade.code.vo.universalInter.data;
 
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
import com.thoughtworks.xstream.annotations.XStreamImplicit;
 
import java.util.List;
 
@XStreamAlias("condtion")
public class CondtionVO {
    @XStreamAsAttribute
    private  String classCode;
    @XStreamAsAttribute
    private String library;
    @XStreamAsAttribute
    private String queryFileds;
    @XStreamImplicit
    private List<PropertyVO> pro;
    public String getClassCode() {
        return classCode;
    }
 
    public void setClassCode(String classCode) {
        this.classCode = classCode;
    }
 
    public String getLibrary() {
        return library;
    }
 
    public void setLibrary(String library) {
        this.library = library;
    }
 
    public String getQueryFileds() {
        return queryFileds;
    }
 
    public void setQueryFileds(String queryFileds) {
        this.queryFileds = queryFileds;
    }
 
    public List<PropertyVO> getPro() {
        return pro;
    }
 
    public void setPro(List<PropertyVO> pro) {
        this.pro = pro;
    }
 
    @Override
    public String toString() {
        return "CondtionVO{" +
                "classCode='" + classCode + '\'' +
                ", library='" + library + '\'' +
                ", queryFileds='" + queryFileds + '\'' +
                ", pro=" + pro +
                '}';
    }
}