| | |
| | | package com.vci.ubcs.code.vo.webserviceModel.classify; |
| | | |
| | | import com.thoughtworks.xstream.annotations.XStreamAlias; |
| | | |
| | | @XStreamAlias("data") |
| | | public class ResultData { |
| | | @XStreamAlias("errorid") |
| | | private String errorid; |
| | | @XStreamAlias("msg") |
| | | private String msg; |
| | | private LibraryVO library ; |
| | | |
| | | public LibraryVO getLibrary() { |
| | | return library; |
| | | } |
| | | |
| | | public void setLibrary(LibraryVO library) { |
| | | this.library = library; |
| | | } |
| | | |
| | | public String getErrorid() { |
| | | return errorid; |
| | | } |
| | | |
| | | public void setErrorid(String errorid) { |
| | | this.errorid = errorid; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public void setMsg(String msg) { |
| | | this.msg = msg; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ResultData{" + |
| | | "code='" + errorid + '\'' + |
| | | ", msg='" + msg + '\'' + |
| | | ", library=" + library + |
| | | '}'; |
| | | } |
| | | } |