package com.jttech.pfcs.vo.req.trade; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *
ReqPymtTrnRsltQryType complex type的 Java 类。 * *
以下模式片段指定包含在此类中的预期内容。 * *
* <complexType name="ReqPymtTrnRsltQryType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ReqSvcHeader" type="{http://esb.spdbbiz.com/services/S080030795}ReqSvcHeaderType"/>
* <element name="SvcBody" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://esb.spdbbiz.com/services/S080030795}InttrIPAdr" minOccurs="0"/>
* <element ref="{http://esb.spdbbiz.com/services/S080030795}OldMsgHdr" minOccurs="0"/>
* <element ref="{http://esb.spdbbiz.com/services/S080030795}OldMsgBdy"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReqPymtTrnRsltQryType", propOrder = {
"reqSvcHeader",
"svcBody"
})
public class ReqPymtTrnRsltQryType {
@XmlElement(name = "ReqSvcHeader", required = true)
protected ReqSvcHeaderType reqSvcHeader;
@XmlElement(name = "SvcBody")
protected ReqPymtTrnRsltQryType.SvcBody svcBody;
/**
* 获取reqSvcHeader属性的值。
*
* @return
* possible object is
* {@link ReqSvcHeaderType }
*
*/
public ReqSvcHeaderType getReqSvcHeader() {
return reqSvcHeader;
}
/**
* 设置reqSvcHeader属性的值。
*
* @param value
* allowed object is
* {@link ReqSvcHeaderType }
*
*/
public void setReqSvcHeader(ReqSvcHeaderType value) {
this.reqSvcHeader = value;
}
/**
* 获取svcBody属性的值。
*
* @return
* possible object is
* {@link ReqPymtTrnRsltQryType.SvcBody }
*
*/
public ReqPymtTrnRsltQryType.SvcBody getSvcBody() {
return svcBody;
}
/**
* 设置svcBody属性的值。
*
* @param value
* allowed object is
* {@link ReqPymtTrnRsltQryType.SvcBody }
*
*/
public void setSvcBody(ReqPymtTrnRsltQryType.SvcBody value) {
this.svcBody = value;
}
/**
* anonymous complex type的 Java 类。 * *
以下模式片段指定包含在此类中的预期内容。 * *
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://esb.spdbbiz.com/services/S080030795}InttrIPAdr" minOccurs="0"/>
* <element ref="{http://esb.spdbbiz.com/services/S080030795}OldMsgHdr" minOccurs="0"/>
* <element ref="{http://esb.spdbbiz.com/services/S080030795}OldMsgBdy"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"inttrIPAdr",
"oldMsgHdr",
"oldMsgBdy"
})
public static class SvcBody {
@XmlElement(name = "InttrIPAdr")
protected String inttrIPAdr;
@XmlElement(name = "OldMsgHdr")
protected String oldMsgHdr;
@XmlElement(name = "OldMsgBdy", required = true)
protected String oldMsgBdy;
/**
* 获取inttrIPAdr属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getInttrIPAdr() {
return inttrIPAdr;
}
/**
* 设置inttrIPAdr属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInttrIPAdr(String value) {
this.inttrIPAdr = value;
}
/**
* 获取oldMsgHdr属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getOldMsgHdr() {
return oldMsgHdr;
}
/**
* 设置oldMsgHdr属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOldMsgHdr(String value) {
this.oldMsgHdr = value;
}
/**
* 获取oldMsgBdy属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getOldMsgBdy() {
return oldMsgBdy;
}
/**
* 设置oldMsgBdy属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOldMsgBdy(String value) {
this.oldMsgBdy = value;
}
}
}