package com.vci.ubcs.code.vo.webserviceModel.result.xml;
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
|
|
import java.util.List;
|
|
/***
|
* 返回结果对象
|
*/
|
@XStreamAlias("data")
|
public class XMLResultSystemVO {
|
/***
|
* 错误标识
|
*/
|
@XStreamAsAttribute
|
private String errorid;
|
/***
|
* 消息
|
*/
|
@XStreamAlias("msg")
|
private String msg;
|
/**
|
* 返回结果对象
|
*/
|
@XStreamAlias("classifys")
|
private List<XMLResultClassfyVO> classifys;
|
|
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;
|
}
|
|
public List<XMLResultClassfyVO> getClassifys() {
|
return classifys;
|
}
|
|
public void setClassifys(List<XMLResultClassfyVO> classifys) {
|
this.classifys = classifys;
|
}
|
|
@Override
|
public String toString() {
|
return "ResultSystemVO{" +
|
"errorid='" + errorid + '\'' +
|
", msg='" + msg + '\'' +
|
", classifys=" + classifys +
|
'}';
|
}
|
}
|