| | |
| | | package com.vci.ubcs.code.vo.webserviceModel.attrmap; |
| | | |
| | | import com.thoughtworks.xstream.annotations.XStreamAlias; |
| | | import com.thoughtworks.xstream.annotations.XStreamImplicit; |
| | | |
| | | import java.util.List; |
| | | |
| | | /*** |
| | | * 库节点 |
| | | */ |
| | | @XStreamAlias("clsfs") |
| | | public class LibraryDO { |
| | | /*** |
| | | * 库节点 |
| | | */ |
| | | @XStreamImplicit(itemFieldName="clsf") |
| | | private List<LibraryClsfDO> clsf; |
| | | |
| | | public List<LibraryClsfDO> getClsf() { |
| | | return clsf; |
| | | } |
| | | |
| | | public void setClsf(List<LibraryClsfDO> clsf) { |
| | | this.clsf = clsf; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "LibraryDO{" + |
| | | "clsf=" + clsf + |
| | | '}'; |
| | | } |
| | | } |