| | |
| | | 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 + |
| | | '}'; |
| | | } |
| | | } |