hies complex type的 Java 类。 + * + *
以下模式片段指定包含在此类中的预期内容。 + * + *
+ * <complexType name="hies"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="arg0" type="{http://www.gzsums.net/hie}request" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "hies", propOrder = { + "arg0" +}) +public class Hies { + + protected Request arg0; + + /** + * 获取arg0属性的值。 + * + * @return + * possible object is + * {@link Request } + * + */ + public Request getArg0() { + return arg0; + } + + /** + * 设置arg0属性的值。 + * + * @param value + * allowed object is + * {@link Request } + * + */ + public void setArg0(Request value) { + this.arg0 = value; + } + +} Index: ssts-webservice/src/main/java/com/forgon/disinfectsystem/webservice/datasync/zsyy/Response.java =================================================================== diff -u --- ssts-webservice/src/main/java/com/forgon/disinfectsystem/webservice/datasync/zsyy/Response.java (revision 0) +++ ssts-webservice/src/main/java/com/forgon/disinfectsystem/webservice/datasync/zsyy/Response.java (revision 38438) @@ -0,0 +1,93 @@ + +package com.forgon.disinfectsystem.webservice.datasync.zsyy; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlType; + + +/** + *
response complex type的 Java 类。 + * + *
以下模式片段指定包含在此类中的预期内容。 + * + *
+ * <complexType name="response"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="responseBody" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="responseHeader" type="{http://www.gzsums.net/hie}responseHeader" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + *+ * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "response", propOrder = { + "responseBody", + "responseHeader" +}) +public class Response { + + protected String responseBody; + protected ResponseHeader responseHeader; + + /** + * 获取responseBody属性的值。 + * + * @return + * possible object is + * {@link String } + * + */ + public String getResponseBody() { + return responseBody; + } + + /** + * 设置responseBody属性的值。 + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setResponseBody(String value) { + this.responseBody = value; + } + + /** + * 获取responseHeader属性的值。 + * + * @return + * possible object is + * {@link ResponseHeader } + * + */ + public ResponseHeader getResponseHeader() { + return responseHeader; + } + + /** + * 设置responseHeader属性的值。 + * + * @param value + * allowed object is + * {@link ResponseHeader } + * + */ + public void setResponseHeader(ResponseHeader value) { + this.responseHeader = value; + } + + @Override + public String toString() { + return "Response [responseBody=" + responseBody + ", responseHeader=" + + responseHeader + "]"; + } + +} Index: ssts-webservice/src/main/java/com/forgon/disinfectsystem/webservice/datasync/zsyy/ObjectFactory.java =================================================================== diff -u --- ssts-webservice/src/main/java/com/forgon/disinfectsystem/webservice/datasync/zsyy/ObjectFactory.java (revision 0) +++ ssts-webservice/src/main/java/com/forgon/disinfectsystem/webservice/datasync/zsyy/ObjectFactory.java (revision 38438) @@ -0,0 +1,102 @@ +package com.forgon.disinfectsystem.webservice.datasync.zsyy; + +import javax.xml.bind.JAXBElement; +import javax.xml.bind.annotation.XmlElementDecl; +import javax.xml.bind.annotation.XmlRegistry; +import javax.xml.namespace.QName; + + +/** + * This object contains factory methods for each + * Java content interface and Java element interface + * generated in the net.gzsums.hie package. + *
An ObjectFactory allows you to programatically
+ * construct new instances of the Java representation
+ * for XML content. The Java representation of XML
+ * content can consist of schema derived interfaces
+ * and classes representing the binding of schema
+ * type definitions, element declarations and model
+ * groups. Factory methods for each of these are
+ * provided in this class.
+ *
+ */
+@XmlRegistry
+public class ObjectFactory {
+
+ private final static QName _Hie_QNAME = new QName("http://www.gzsums.net/hie", "hie");
+ private final static QName _HieResponse_QNAME = new QName("http://www.gzsums.net/hie", "hieResponse");
+
+ /**
+ * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: net.gzsums.hie
+ *
+ */
+ public ObjectFactory() {
+ }
+
+ /**
+ * Create an instance of {@link Hies }
+ *
+ */
+ public Hies createHies() {
+ return new Hies();
+ }
+
+ /**
+ * Create an instance of {@link HieResponse }
+ *
+ */
+ public HieResponse createHieResponse() {
+ return new HieResponse();
+ }
+
+ /**
+ * Create an instance of {@link Request }
+ *
+ */
+ public Request createRequest() {
+ return new Request();
+ }
+
+ /**
+ * Create an instance of {@link RequestHeader }
+ *
+ */
+ public RequestHeader createRequestHeader() {
+ return new RequestHeader();
+ }
+
+ /**
+ * Create an instance of {@link Response }
+ *
+ */
+ public Response createResponse() {
+ return new Response();
+ }
+
+ /**
+ * Create an instance of {@link ResponseHeader }
+ *
+ */
+ public ResponseHeader createResponseHeader() {
+ return new ResponseHeader();
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link Hies }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://www.gzsums.net/hie", name = "hie")
+ public JAXBElement request complex type的 Java 类。
+ *
+ * 以下模式片段指定包含在此类中的预期内容。
+ *
+ * requestHeader complex type的 Java 类。
+ *
+ * 以下模式片段指定包含在此类中的预期内容。
+ *
+ * hieResponse complex type的 Java 类。
+ *
+ * 以下模式片段指定包含在此类中的预期内容。
+ *
+ * responseHeader complex type的 Java 类。
+ *
+ * 以下模式片段指定包含在此类中的预期内容。
+ *
+ *
+ * <complexType name="request">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="requestBody" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="requestHeader" type="{http://www.gzsums.net/hie}requestHeader" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "request", propOrder = {
+ "requestBody",
+ "requestHeader"
+})
+public class Request {
+
+ protected String requestBody;
+ protected RequestHeader requestHeader;
+
+ /**
+ * 获取requestBody属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getRequestBody() {
+ return requestBody;
+ }
+
+ /**
+ * 设置requestBody属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setRequestBody(String value) {
+ this.requestBody = value;
+ }
+
+ /**
+ * 获取requestHeader属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link RequestHeader }
+ *
+ */
+ public RequestHeader getRequestHeader() {
+ return requestHeader;
+ }
+
+ /**
+ * 设置requestHeader属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link RequestHeader }
+ *
+ */
+ public void setRequestHeader(RequestHeader value) {
+ this.requestHeader = value;
+ }
+
+ @Override
+ public String toString() {
+ return "Request [requestBody=" + requestBody + ", requestHeader="
+ + requestHeader + "]";
+ }
+
+}
Index: ssts-webservice/src/main/java/com/forgon/disinfectsystem/webservice/datasync/zsyy/RequestHeader.java
===================================================================
diff -u
--- ssts-webservice/src/main/java/com/forgon/disinfectsystem/webservice/datasync/zsyy/RequestHeader.java (revision 0)
+++ ssts-webservice/src/main/java/com/forgon/disinfectsystem/webservice/datasync/zsyy/RequestHeader.java (revision 38438)
@@ -0,0 +1,231 @@
+
+package com.forgon.disinfectsystem.webservice.datasync.zsyy;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="requestHeader">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="msgId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="msgPriority" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="msgType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="msgVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="receiver" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="requestTime" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="sender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "requestHeader", propOrder = {
+ "msgId",
+ "msgPriority",
+ "msgType",
+ "msgVersion",
+ "receiver",
+ "requestTime",
+ "sender"
+})
+public class RequestHeader {
+
+ protected String msgId;
+ protected String msgPriority;
+ protected String msgType;
+ protected String msgVersion;
+ protected String receiver;
+ protected String requestTime;
+ protected String sender;
+
+ /**
+ * 获取msgId属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMsgId() {
+ return msgId;
+ }
+
+ /**
+ * 设置msgId属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMsgId(String value) {
+ this.msgId = value;
+ }
+
+ /**
+ * 获取msgPriority属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMsgPriority() {
+ return msgPriority;
+ }
+
+ /**
+ * 设置msgPriority属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMsgPriority(String value) {
+ this.msgPriority = value;
+ }
+
+ /**
+ * 获取msgType属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMsgType() {
+ return msgType;
+ }
+
+ /**
+ * 设置msgType属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMsgType(String value) {
+ this.msgType = value;
+ }
+
+ /**
+ * 获取msgVersion属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMsgVersion() {
+ return msgVersion;
+ }
+
+ /**
+ * 设置msgVersion属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMsgVersion(String value) {
+ this.msgVersion = value;
+ }
+
+ /**
+ * 获取receiver属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReceiver() {
+ return receiver;
+ }
+
+ /**
+ * 设置receiver属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReceiver(String value) {
+ this.receiver = value;
+ }
+
+ /**
+ * 获取requestTime属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getRequestTime() {
+ return requestTime;
+ }
+
+ /**
+ * 设置requestTime属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setRequestTime(String value) {
+ this.requestTime = value;
+ }
+
+ /**
+ * 获取sender属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getSender() {
+ return sender;
+ }
+
+ /**
+ * 设置sender属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setSender(String value) {
+ this.sender = value;
+ }
+
+
+ @Override
+ public String toString() {
+ return "RequestHeader [msgId=" + msgId + ", msgPriority=" + msgPriority
+ + ", msgType=" + msgType + ", msgVersion=" + msgVersion
+ + ", receiver=" + receiver + ", requestTime=" + requestTime
+ + ", sender=" + sender + "]";
+ }
+
+}
Index: ssts-datasync-default-impl/src/main/java/com/forgon/disinfectsystem/datasynchronization/service/DataSynchronizationManagerImpl.java
===================================================================
diff -u -r38323 -r38438
--- ssts-datasync-default-impl/src/main/java/com/forgon/disinfectsystem/datasynchronization/service/DataSynchronizationManagerImpl.java (.../DataSynchronizationManagerImpl.java) (revision 38323)
+++ ssts-datasync-default-impl/src/main/java/com/forgon/disinfectsystem/datasynchronization/service/DataSynchronizationManagerImpl.java (.../DataSynchronizationManagerImpl.java) (revision 38438)
@@ -1014,7 +1014,11 @@
// }
orgUnit = new OrgUnit();
orgUnit.setOrgUnitCoding(vo.coding);// 部门编码
- orgUnit.setOrgForeignKey(vo.coding);// 部门外部ID
+ if(StringUtils.isNotBlank(vo.getOrgForeignKey())){
+ orgUnit.setOrgForeignKey(vo.getOrgForeignKey());// 部门外部ID
+ }else{
+ orgUnit.setOrgForeignKey(vo.coding);// 部门外部ID
+ }
if(StringUtils.isNotBlank(vo.getSource())){//数据来源
orgUnit.setSource(vo.getSource());
}else{
Index: ssts-datasync/src/main/java/com/forgon/disinfectsystem/datasynchronization/model/OrgUnitVo.java
===================================================================
diff -u -r37553 -r38438
--- ssts-datasync/src/main/java/com/forgon/disinfectsystem/datasynchronization/model/OrgUnitVo.java (.../OrgUnitVo.java) (revision 37553)
+++ ssts-datasync/src/main/java/com/forgon/disinfectsystem/datasynchronization/model/OrgUnitVo.java (.../OrgUnitVo.java) (revision 38438)
@@ -20,6 +20,16 @@
private Long idFromHisSync;
/**
+ * 部门外部ID
+ */
+ private String orgForeignKey;
+
+ /**
+ * 部门外部ID
+ */
+ private String parentOrgForeignKey;
+
+ /**
* 父科室的id
*/
private Long parentIdFromHisSync;
@@ -222,4 +232,20 @@
public void setModifyTime(String modifyTime) {
this.modifyTime = modifyTime;
}
+
+ public String getOrgForeignKey() {
+ return orgForeignKey;
+ }
+
+ public void setOrgForeignKey(String orgForeignKey) {
+ this.orgForeignKey = orgForeignKey;
+ }
+
+ public String getParentOrgForeignKey() {
+ return parentOrgForeignKey;
+ }
+
+ public void setParentOrgForeignKey(String parentOrgForeignKey) {
+ this.parentOrgForeignKey = parentOrgForeignKey;
+ }
}
Index: ssts-webservice/src/main/java/com/forgon/disinfectsystem/webservice/datasync/zsyy/HieResponse.java
===================================================================
diff -u
--- ssts-webservice/src/main/java/com/forgon/disinfectsystem/webservice/datasync/zsyy/HieResponse.java (revision 0)
+++ ssts-webservice/src/main/java/com/forgon/disinfectsystem/webservice/datasync/zsyy/HieResponse.java (revision 38438)
@@ -0,0 +1,60 @@
+package com.forgon.disinfectsystem.webservice.datasync.zsyy;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="hieResponse">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="return" type="{http://www.gzsums.net/hie}response" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "hieResponse", propOrder = {
+ "_return"
+})
+public class HieResponse {
+
+ @XmlElement(name = "return")
+ protected Response _return;
+
+ /**
+ * 获取return属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link Response }
+ *
+ */
+ public Response getReturn() {
+ return _return;
+ }
+
+ /**
+ * 设置return属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link Response }
+ *
+ */
+ public void setReturn(Response value) {
+ this._return = value;
+ }
+
+}
\ No newline at end of file
Index: ssts-webservice/src/main/java/com/forgon/disinfectsystem/webservice/datasync/zsyy/ResponseHeader.java
===================================================================
diff -u
--- ssts-webservice/src/main/java/com/forgon/disinfectsystem/webservice/datasync/zsyy/ResponseHeader.java (revision 0)
+++ ssts-webservice/src/main/java/com/forgon/disinfectsystem/webservice/datasync/zsyy/ResponseHeader.java (revision 38438)
@@ -0,0 +1,285 @@
+package com.forgon.disinfectsystem.webservice.datasync.zsyy;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ *
+ * <complexType name="responseHeader">
+ * <complexContent>
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * <sequence>
+ * <element name="errCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="errMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="msgId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="msgPriority" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="msgType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="msgVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="receiver" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="responseTime" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="sender" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * </sequence>
+ * </restriction>
+ * </complexContent>
+ * </complexType>
+ *
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "responseHeader", propOrder = {
+ "errCode",
+ "errMessage",
+ "msgId",
+ "msgPriority",
+ "msgType",
+ "msgVersion",
+ "receiver",
+ "responseTime",
+ "sender"
+})
+public class ResponseHeader {
+
+ protected String errCode;
+ protected String errMessage;
+ protected String msgId;
+ protected String msgPriority;
+ protected String msgType;
+ protected String msgVersion;
+ protected String receiver;
+ protected String responseTime;
+ protected String sender;
+
+ /**
+ * 获取errCode属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getErrCode() {
+ return errCode;
+ }
+
+ /**
+ * 设置errCode属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setErrCode(String value) {
+ this.errCode = value;
+ }
+
+ /**
+ * 获取errMessage属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getErrMessage() {
+ return errMessage;
+ }
+
+ /**
+ * 设置errMessage属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setErrMessage(String value) {
+ this.errMessage = value;
+ }
+
+ /**
+ * 获取msgId属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMsgId() {
+ return msgId;
+ }
+
+ /**
+ * 设置msgId属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMsgId(String value) {
+ this.msgId = value;
+ }
+
+ /**
+ * 获取msgPriority属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMsgPriority() {
+ return msgPriority;
+ }
+
+ /**
+ * 设置msgPriority属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMsgPriority(String value) {
+ this.msgPriority = value;
+ }
+
+ /**
+ * 获取msgType属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMsgType() {
+ return msgType;
+ }
+
+ /**
+ * 设置msgType属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMsgType(String value) {
+ this.msgType = value;
+ }
+
+ /**
+ * 获取msgVersion属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMsgVersion() {
+ return msgVersion;
+ }
+
+ /**
+ * 设置msgVersion属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMsgVersion(String value) {
+ this.msgVersion = value;
+ }
+
+ /**
+ * 获取receiver属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getReceiver() {
+ return receiver;
+ }
+
+ /**
+ * 设置receiver属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setReceiver(String value) {
+ this.receiver = value;
+ }
+
+ /**
+ * 获取responseTime属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getResponseTime() {
+ return responseTime;
+ }
+
+ /**
+ * 设置responseTime属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setResponseTime(String value) {
+ this.responseTime = value;
+ }
+
+ /**
+ * 获取sender属性的值。
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getSender() {
+ return sender;
+ }
+
+ /**
+ * 设置sender属性的值。
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setSender(String value) {
+ this.sender = value;
+ }
+
+
+ @Override
+ public String toString() {
+ return "ResponseHeader [errCode=" + errCode + ", errMessage="
+ + errMessage + ", msgId=" + msgId + ", msgPriority="
+ + msgPriority + ", msgType=" + msgType + ", msgVersion="
+ + msgVersion + ", receiver=" + receiver + ", responseTime="
+ + responseTime + ", sender=" + sender + "]";
+ }
+
+}