package com.jttech.pfcs.vo.resp; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *
RspPymtTrnRsltQryType complex type的 Java 类。 * *
以下模式片段指定包含在此类中的预期内容。 * *
* <complexType name="RspPymtTrnRsltQryType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="RspSvcHeader" type="{http://esb.spdbbiz.com/services/S080030795}RspSvcHeaderType"/>
* <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}RetMsg"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RspPymtTrnRsltQryType", propOrder = {
"rspSvcHeader",
"svcBody"
})
public class RspPymtTrnRsltQryType {
@XmlElement(name = "RspSvcHeader", required = true)
protected RspSvcHeaderType rspSvcHeader;
@XmlElement(name = "SvcBody")
protected RspPymtTrnRsltQryType.SvcBody svcBody;
/**
* 获取rspSvcHeader属性的值。
*
* @return
* possible object is
* {@link RspSvcHeaderType }
*
*/
public RspSvcHeaderType getRspSvcHeader() {
return rspSvcHeader;
}
/**
* 设置rspSvcHeader属性的值。
*
* @param value
* allowed object is
* {@link RspSvcHeaderType }
*
*/
public void setRspSvcHeader(RspSvcHeaderType value) {
this.rspSvcHeader = value;
}
/**
* 获取svcBody属性的值。
*
* @return
* possible object is
* {@link RspPymtTrnRsltQryType.SvcBody }
*
*/
public RspPymtTrnRsltQryType.SvcBody getSvcBody() {
return svcBody;
}
/**
* 设置svcBody属性的值。
*
* @param value
* allowed object is
* {@link RspPymtTrnRsltQryType.SvcBody }
*
*/
public void setSvcBody(RspPymtTrnRsltQryType.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}RetMsg"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"retMsg"
})
public static class SvcBody {
@XmlElement(name = "RetMsg", required = true)
protected String retMsg;
/**
* 获取retMsg属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getRetMsg() {
return retMsg;
}
/**
* 设置retMsg属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRetMsg(String value) {
this.retMsg = value;
}
}
}