xiaoyong931011
2022-09-24 3e0c2e4de5415cfa1bab063044ef6d1235f50f6e
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
package cc.mrbird.febs.pay.model;
 
/**
 * User: rizenguo
 * Date: 2014/10/22
 * Time: 16:42
 */
 
/**
 * 被扫支付提交Post数据给到API之后,API会返回XML格式的数据,这个类用来装这些数据
 */
public class JsApiPayResData {
    //协议层
    private String return_code = "";
    private String return_msg = "";
 
    //协议返回的具体数据(以下字段在return_code 为SUCCESS 的时候有返回)
    private String appid = "";
    private String mch_id = "";
    private String nonce_str = "";
    private String sign = "";
    private String result_code = "";
    private String err_code = "";
    private String err_code_des = "";
 
    private String device_info = "";
 
    //业务返回的具体数据(以下字段在return_code 和result_code 都为SUCCESS 的时候有返回)
    private String openid = "";
    private String is_subscribe = "";
    private String trade_type = "";
    private String bank_type = "";
    private String total_fee = "";
    private String coupon_fee = "";
    private String fee_type = "";
    private String transaction_id = "";
    private String out_trade_no = "";
    private String attach = "";
    private String time_end = "";
    private String prepay_id = "";
 
    
    
    public String getPrepay_id() {
        return prepay_id;
    }
 
    public void setPrepay_id(String prepay_id) {
        this.prepay_id = prepay_id;
    }
 
    public String getReturn_code() {
        return return_code;
    }
 
    public void setReturn_code(String return_code) {
        this.return_code = return_code;
    }
 
    public String getReturn_msg() {
        return return_msg;
    }
 
    public void setReturn_msg(String return_msg) {
        this.return_msg = return_msg;
    }
 
    public String getAppid() {
        return appid;
    }
 
    public void setAppid(String appid) {
        this.appid = appid;
    }
 
    public String getMch_id() {
        return mch_id;
    }
 
    public void setMch_id(String mch_id) {
        this.mch_id = mch_id;
    }
 
    public String getDevice_info() {
        return device_info;
    }
 
    public void setDevice_info(String device_info) {
        this.device_info = device_info;
    }
 
    public String getNonce_str() {
        return nonce_str;
    }
 
    public void setNonce_str(String nonce_str) {
        this.nonce_str = nonce_str;
    }
 
    public String getSign() {
        return sign;
    }
 
    public void setSign(String sign) {
        this.sign = sign;
    }
 
    public String getResult_code() {
        return result_code;
    }
 
    public void setResult_code(String result_code) {
        this.result_code = result_code;
    }
 
    public String getErr_code() {
        return err_code;
    }
 
    public void setErr_code(String err_code) {
        this.err_code = err_code;
    }
 
    public String getErr_code_des() {
        return err_code_des;
    }
 
    public void setErr_code_des(String err_code_des) {
        this.err_code_des = err_code_des;
    }
 
    public String getOpenid() {
        return openid;
    }
 
    public void setOpenid(String openid) {
        this.openid = openid;
    }
 
    public String getIs_subscribe() {
        return is_subscribe;
    }
 
    public void setIs_subscribe(String is_subscribe) {
        this.is_subscribe = is_subscribe;
    }
 
    public String getTrade_type() {
        return trade_type;
    }
 
    public void setTrade_type(String trade_type) {
        this.trade_type = trade_type;
    }
 
    public String getBank_type() {
        return bank_type;
    }
 
    public void setBank_type(String bank_type) {
        this.bank_type = bank_type;
    }
 
    public String getTotal_fee() {
        return total_fee;
    }
 
    public void setTotal_fee(String total_fee) {
        this.total_fee = total_fee;
    }
 
    public String getCoupon_fee() {
        return coupon_fee;
    }
 
    public void setCoupon_fee(String coupon_fee) {
        this.coupon_fee = coupon_fee;
    }
 
    public String getFee_type() {
        return fee_type;
    }
 
    public void setFee_type(String fee_type) {
        this.fee_type = fee_type;
    }
 
    public String getTransaction_id() {
        return transaction_id;
    }
 
    public void setTransaction_id(String transaction_id) {
        this.transaction_id = transaction_id;
    }
 
    public String getOut_trade_no() {
        return out_trade_no;
    }
 
    public void setOut_trade_no(String out_trade_no) {
        this.out_trade_no = out_trade_no;
    }
 
    public String getAttach() {
        return attach;
    }
 
    public void setAttach(String attach) {
        this.attach = attach;
    }
 
    public String getTime_end() {
        return time_end;
    }
 
    public void setTime_end(String time_end) {
        this.time_end = time_end;
    }
 
    @Override
    public String toString() {
        return "JsApiPayResData [return_code=" + return_code + ", return_msg=" + return_msg + ", appid=" + appid
                + ", mch_id=" + mch_id + ", nonce_str=" + nonce_str + ", sign=" + sign + ", result_code=" + result_code
                + ", err_code=" + err_code + ", err_code_des=" + err_code_des + ", device_info=" + device_info
                + ", openid=" + openid + ", is_subscribe=" + is_subscribe + ", trade_type=" + trade_type
                + ", bank_type=" + bank_type + ", total_fee=" + total_fee + ", coupon_fee=" + coupon_fee + ", fee_type="
                + fee_type + ", transaction_id=" + transaction_id + ", out_trade_no=" + out_trade_no + ", attach="
                + attach + ", time_end=" + time_end + ", prepay_id=" + prepay_id + "]";
    }
 
    
}