package com.jttech.pfcs.vo.resp.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; /** *
RspWHPymtTrnRsltQryType complex type的 Java 类。 * *
以下模式片段指定包含在此类中的预期内容。 * *
* <complexType name="RspWHPymtTrnRsltQryType"> * <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 = "RspWHPymtTrnRsltQryType", propOrder = { "rspSvcHeader", "svcBody" }) public class RspWHPymtTrnRsltQryType { @XmlElement(name = "RspSvcHeader", required = true) protected RspSvcHeaderType rspSvcHeader; @XmlElement(name = "SvcBody") protected RspWHPymtTrnRsltQryType.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 RspWHPymtTrnRsltQryType.SvcBody } * */ public RspWHPymtTrnRsltQryType.SvcBody getSvcBody() { return svcBody; } /** * 设置svcBody属性的值。 * * @param value * allowed object is * {@link RspWHPymtTrnRsltQryType.SvcBody } * */ public void setSvcBody(RspWHPymtTrnRsltQryType.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; } } }