wanghc
2023-03-08 65d297b263d224e2d84d4d2ab941da36544e8d23
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
 
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;
 
 
/**
 * <p>SubSvcRetInfoType complex type的 Java 类。
 * 
 * <p>以下模式片段指定包含在此类中的预期内容。
 * 
 * <pre>
 * &lt;complexType name="SubSvcRetInfoType"&gt;
 *   &lt;complexContent&gt;
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
 *       &lt;sequence&gt;
 *         &lt;element ref="{http://esb.spdbbiz.com/services/S080030795}SubSvcSysId" minOccurs="0"/&gt;
 *         &lt;element ref="{http://esb.spdbbiz.com/services/S080030795}SubSvcId" minOccurs="0"/&gt;
 *         &lt;element ref="{http://esb.spdbbiz.com/services/S080030795}SubSvcRetCode" minOccurs="0"/&gt;
 *         &lt;element ref="{http://esb.spdbbiz.com/services/S080030795}SubSvcRetMsg" minOccurs="0"/&gt;
 *         &lt;element ref="{http://esb.spdbbiz.com/services/S080030795}RsrvContent" minOccurs="0"/&gt;
 *       &lt;/sequence&gt;
 *     &lt;/restriction&gt;
 *   &lt;/complexContent&gt;
 * &lt;/complexType&gt;
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SubSvcRetInfoType", propOrder = {
    "subSvcSysId",
    "subSvcId",
    "subSvcRetCode",
    "subSvcRetMsg",
    "rsrvContent"
})
public class SubSvcRetInfoType {
 
    @XmlElement(name = "SubSvcSysId")
    protected String subSvcSysId;
    @XmlElement(name = "SubSvcId")
    protected String subSvcId;
    @XmlElement(name = "SubSvcRetCode")
    protected String subSvcRetCode;
    @XmlElement(name = "SubSvcRetMsg")
    protected String subSvcRetMsg;
    @XmlElement(name = "RsrvContent")
    protected String rsrvContent;
 
    /**
     * 获取subSvcSysId属性的值。
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getSubSvcSysId() {
        return subSvcSysId;
    }
 
    /**
     * 设置subSvcSysId属性的值。
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setSubSvcSysId(String value) {
        this.subSvcSysId = value;
    }
 
    /**
     * 获取subSvcId属性的值。
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getSubSvcId() {
        return subSvcId;
    }
 
    /**
     * 设置subSvcId属性的值。
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setSubSvcId(String value) {
        this.subSvcId = value;
    }
 
    /**
     * 获取subSvcRetCode属性的值。
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getSubSvcRetCode() {
        return subSvcRetCode;
    }
 
    /**
     * 设置subSvcRetCode属性的值。
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setSubSvcRetCode(String value) {
        this.subSvcRetCode = value;
    }
 
    /**
     * 获取subSvcRetMsg属性的值。
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getSubSvcRetMsg() {
        return subSvcRetMsg;
    }
 
    /**
     * 设置subSvcRetMsg属性的值。
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setSubSvcRetMsg(String value) {
        this.subSvcRetMsg = value;
    }
 
    /**
     * 获取rsrvContent属性的值。
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getRsrvContent() {
        return rsrvContent;
    }
 
    /**
     * 设置rsrvContent属性的值。
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setRsrvContent(String value) {
        this.rsrvContent = value;
    }
 
}