| | |
| | | package com.vci.ubcs.code.dto.datapush.result; |
| | | |
| | | //import com.thoughtworks.xstream.annotations.XStreamAlias; |
| | | //import com.thoughtworks.xstream.annotations.XStreamAsAttribute; |
| | | import com.thoughtworks.xstream.annotations.XStreamAlias; |
| | | import com.thoughtworks.xstream.annotations.XStreamAsAttribute; |
| | | |
| | | //@XStreamAlias("object") |
| | | @XStreamAlias("object") |
| | | public class ResultNodeObjectDTO { |
| | | /*** |
| | | * 数据编码 |
| | | */ |
| | | //@XStreamAsAttribute |
| | | @XStreamAsAttribute |
| | | private String code; |
| | | /*** |
| | | * 数据oid |
| | | */ |
| | | //@XStreamAsAttribute |
| | | private String oid; |
| | | @XStreamAsAttribute |
| | | private String itemid; |
| | | /*** |
| | | * 错误标识 |
| | | */ |
| | | //@XStreamAsAttribute |
| | | @XStreamAsAttribute |
| | | private String erroid; |
| | | /*** |
| | | * 错误信息 |
| | | */ |
| | | //@XStreamAsAttribute |
| | | @XStreamAsAttribute |
| | | private String msg; |
| | | |
| | | public String getCode() { |
| | |
| | | this.code = code; |
| | | } |
| | | |
| | | public String getOid() { |
| | | return oid; |
| | | } |
| | | public String getItemid() { |
| | | return itemid; |
| | | } |
| | | |
| | | public void setOid(String oid) { |
| | | this.oid = oid; |
| | | } |
| | | public void setItemid(String itemid) { |
| | | this.itemid = itemid; |
| | | } |
| | | |
| | | public String getErroid() { |
| | | public String getErroid() { |
| | | return erroid; |
| | | } |
| | | |
| | |
| | | public String toString() { |
| | | return "ResultNodeObjectDTO{" + |
| | | "code='" + code + '\'' + |
| | | ", oid='" + oid + '\'' + |
| | | ", oid='" + itemid + '\'' + |
| | | ", erroid='" + erroid + '\'' + |
| | | ", msg='" + msg + '\'' + |
| | | '}'; |