| | |
| | | package com.vci.ubcs.code.vo.webserviceModel.result.json; |
| | | |
| | | /*** |
| | | * 返回结果对象 |
| | | */ |
| | | public class JSONResultSystemVO { |
| | | /*** |
| | | * 错误标识 |
| | | */ |
| | | private String errorid; |
| | | /*** |
| | | * 消息 |
| | | */ |
| | | private String msg; |
| | | /** |
| | | * 返回结果对象 |
| | | */ |
| | | private JSONResultClassfysVO 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 JSONResultClassfysVO getClassifys() { |
| | | return classifys; |
| | | } |
| | | |
| | | public void setClassifys(JSONResultClassfysVO classifys) { |
| | | this.classifys = classifys; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ResultSystemVO{" + |
| | | "errorid='" + errorid + '\'' + |
| | | ", msg='" + msg + '\'' + |
| | | ", classifys=" + classifys + |
| | | '}'; |
| | | } |
| | | } |