| | |
| | | package com.vci.ubcs.code.vo.webserviceModel.result.xml; |
| | | |
| | | import com.thoughtworks.xstream.annotations.XStreamAlias; |
| | | import com.thoughtworks.xstream.annotations.XStreamAsAttribute; |
| | | |
| | | /*** |
| | | * object节点 |
| | | * @author xj |
| | | */ |
| | | @XStreamAlias("object") |
| | | public class XMLResultDataObjectDetailDO { |
| | | @XStreamAsAttribute |
| | | private String id; |
| | | @XStreamAsAttribute |
| | | private String errorid; |
| | | @XStreamAsAttribute |
| | | private String code; |
| | | @XStreamAlias("msg") |
| | | private String msg; |
| | | |
| | | public String getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(String id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getErrorid() { |
| | | return errorid; |
| | | } |
| | | |
| | | public void setErrorid(String errorid) { |
| | | this.errorid = errorid; |
| | | } |
| | | |
| | | public String getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public void setCode(String code) { |
| | | this.code = code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public void setMsg(String msg) { |
| | | this.msg = msg; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ResultDataObjectDetailDO{" + |
| | | "id='" + id + '\'' + |
| | | ", errorid='" + errorid + '\'' + |
| | | ", code='" + code + '\'' + |
| | | ", msg='" + msg + '\'' + |
| | | '}'; |
| | | } |
| | | } |