| | |
| | | package com.vci.ubcs.code.vo.webserviceModel.classify; |
| | | |
| | | import com.thoughtworks.xstream.annotations.XStreamAlias; |
| | | import com.thoughtworks.xstream.annotations.XStreamAsAttribute; |
| | | import com.thoughtworks.xstream.annotations.XStreamImplicit; |
| | | |
| | | import java.util.List; |
| | | |
| | | @XStreamAlias("library") |
| | | public class QueryLibraryVO { |
| | | @XStreamAsAttribute |
| | | private String id; |
| | | @XStreamImplicit |
| | | private List<String> classifyid; |
| | | |
| | | public String getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(String id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public List<String> getClassifyid() { |
| | | return classifyid; |
| | | } |
| | | |
| | | public void setClassifyid(List<String> classifyid) { |
| | | this.classifyid = classifyid; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "LibraryVO{" + |
| | | "id='" + id + '\'' + |
| | | ", classifyid=" + classifyid + |
| | | '}'; |
| | | } |
| | | } |