| | |
| | | package com.vci.ubcs.code.vo.webserviceModel.data; |
| | | |
| | | import com.thoughtworks.xstream.annotations.XStreamAlias; |
| | | import com.thoughtworks.xstream.annotations.XStreamImplicit; |
| | | |
| | | import java.util.List; |
| | | |
| | | @XStreamAlias("data") |
| | | public class ResultDataVO { |
| | | private String errorid; |
| | | private String msg; |
| | | @XStreamImplicit |
| | | private List<DataObjectVO> object; |
| | | |
| | | public List<DataObjectVO> getObject() { |
| | | return object; |
| | | } |
| | | |
| | | public void setObject(List<DataObjectVO> object) { |
| | | this.object = object; |
| | | } |
| | | |
| | | 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 "ResultDataVO{" + |
| | | "errorid='" + errorid + '\'' + |
| | | ", msg='" + msg + '\'' + |
| | | ", object=" + object + |
| | | '}'; |
| | | } |
| | | } |