📄 adcsiresponse.java
字号:
/**
* Sets the resultCode value for this AdcSiResponse.
*
* @param resultCode
*/
public void setResultCode(java.lang.String resultCode) {
this.resultCode = resultCode;
}
/**
* Gets the resultMsg value for this AdcSiResponse.
*
* @return resultMsg
*/
public java.lang.String getResultMsg() {
return resultMsg;
}
/**
* Sets the resultMsg value for this AdcSiResponse.
*
* @param resultMsg
*/
public void setResultMsg(java.lang.String resultMsg) {
this.resultMsg = resultMsg;
}
/**
* Gets the svcCont value for this AdcSiResponse.
*
* @return svcCont
*/
public java.lang.String getSvcCont() {
return svcCont;
}
/**
* Sets the svcCont value for this AdcSiResponse.
*
* @param svcCont
*/
public void setSvcCont(java.lang.String svcCont) {
this.svcCont = svcCont;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof AdcSiResponse)) return false;
AdcSiResponse other = (AdcSiResponse) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.bizCode==null && other.getBizCode()==null) ||
(this.bizCode!=null &&
this.bizCode.equals(other.getBizCode()))) &&
((this.transID==null && other.getTransID()==null) ||
(this.transID!=null &&
this.transID.equals(other.getTransID()))) &&
this.actionCode == other.getActionCode() &&
((this.timeStamp==null && other.getTimeStamp()==null) ||
(this.timeStamp!=null &&
this.timeStamp.equals(other.getTimeStamp()))) &&
((this.SIAppID==null && other.getSIAppID()==null) ||
(this.SIAppID!=null &&
this.SIAppID.equals(other.getSIAppID()))) &&
this.testFlag == other.getTestFlag() &&
this.dealkind == other.getDealkind() &&
this.priority == other.getPriority() &&
((this.version==null && other.getVersion()==null) ||
(this.version!=null &&
this.version.equals(other.getVersion()))) &&
((this.resultCode==null && other.getResultCode()==null) ||
(this.resultCode!=null &&
this.resultCode.equals(other.getResultCode()))) &&
((this.resultMsg==null && other.getResultMsg()==null) ||
(this.resultMsg!=null &&
this.resultMsg.equals(other.getResultMsg()))) &&
((this.svcCont==null && other.getSvcCont()==null) ||
(this.svcCont!=null &&
this.svcCont.equals(other.getSvcCont())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getBizCode() != null) {
_hashCode += getBizCode().hashCode();
}
if (getTransID() != null) {
_hashCode += getTransID().hashCode();
}
_hashCode += getActionCode();
if (getTimeStamp() != null) {
_hashCode += getTimeStamp().hashCode();
}
if (getSIAppID() != null) {
_hashCode += getSIAppID().hashCode();
}
_hashCode += getTestFlag();
_hashCode += getDealkind();
_hashCode += getPriority();
if (getVersion() != null) {
_hashCode += getVersion().hashCode();
}
if (getResultCode() != null) {
_hashCode += getResultCode().hashCode();
}
if (getResultMsg() != null) {
_hashCode += getResultMsg().hashCode();
}
if (getSvcCont() != null) {
_hashCode += getSvcCont().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(AdcSiResponse.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("http://adc.siinterface/", "AdcSiResponse"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("bizCode");
elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "BizCode"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("transID");
elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "TransID"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("actionCode");
elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "ActionCode"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("timeStamp");
elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "TimeStamp"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("SIAppID");
elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "SIAppID"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("testFlag");
elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "TestFlag"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("dealkind");
elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "Dealkind"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("priority");
elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "Priority"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("version");
elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "Version"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("resultCode");
elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "ResultCode"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("resultMsg");
elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "ResultMsg"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("svcCont");
elemField.setXmlName(new javax.xml.namespace.QName("http://adc.siinterface/", "SvcCont"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setMinOccurs(0);
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
}
/**
* Return type metadata object
*/
public static org.apache.axis.description.TypeDesc getTypeDesc() {
return typeDesc;
}
/**
* Get Custom Serializer
*/
public static org.apache.axis.encoding.Serializer getSerializer(
java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType) {
return
new org.apache.axis.encoding.ser.BeanSerializer(
_javaType, _xmlType, typeDesc);
}
/**
* Get Custom Deserializer
*/
public static org.apache.axis.encoding.Deserializer getDeserializer(
java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType) {
return
new org.apache.axis.encoding.ser.BeanDeserializer(
_javaType, _xmlType, typeDesc);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -