fujunling
2023-05-26 087511862a295eda0cf808a92f2ed2df348d54ff
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
package com.vci.ubcs.code.vo.webserviceModel.coderule;
 
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
import com.vci.ubcs.code.vo.webserviceModel.apply.UserVO;
 
@XStreamAlias("data")
public class QueryData {
    @XStreamAsAttribute
    private String systemId;
    private UserVO user;
    private QueryLibraryVO library ;
    public QueryLibraryVO getLibrary() {
        return library;
    }
 
    public void setLibrary(QueryLibraryVO library) {
        this.library = library;
    }
 
    public String getSystemId() {
        return systemId;
    }
 
    public void setSystemId(String systemId) {
        this.systemId = systemId;
    }
 
    public UserVO getUser() {
        return user;
    }
 
    public void setUser(UserVO user) {
        this.user = user;
    }
 
    @Override
    public String toString() {
        return "QueryData{" +
                "systemId='" + systemId + '\'' +
                ", library=" + library +
                '}';
    }
}