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
package com.vci.ubcs.code.vo.webserviceModel.attrmap;
 
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
import com.thoughtworks.xstream.annotations.XStreamImplicit;
 
import java.util.List;
 
/***
 * 库节点
 */
@XStreamAlias("clsf")
public class LibraryClsfDO {
    @XStreamAsAttribute
    private String library;
    @XStreamImplicit(itemFieldName="prop")
    private List<ClsfAttrMappingDO> prop;
 
 
    public String getLibrary() {
        return library;
    }
 
    public void setLibrary(String library) {
        this.library = library;
    }
    public List<ClsfAttrMappingDO> getProp() {
        return prop;
    }
 
    public void setProp(List<ClsfAttrMappingDO> prop) {
        this.prop = prop;
    }
 
    @Override
    public String toString() {
        return "LibraryClsfDO{" +
                "library='" + library + '\'' +
                ", prop=" + prop +
                '}';
    }
}