WalletPayCloudResponseBean.java
1.7 KB
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
package com.cnlive.goldenline.model.mine;
/**
* Description:
* Created on 2017/3/30
* Author : 郭
*/
public class WalletPayCloudResponseBean {
private String errorCode;
private String errorMessage;
private String notify_url;
private String order_id;
private String alipay_app;
private Wx_appBean wx_app;
public String getErrorCode() {
return errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getNotify_url() {
return notify_url;
}
public void setNotify_url(String notify_url) {
this.notify_url = notify_url;
}
public String getOrder_id() {
return order_id;
}
public void setOrder_id(String order_id) {
this.order_id = order_id;
}
public Wx_appBean getWx_app() {
return wx_app;
}
public void setWx_app(Wx_appBean wx_app) {
this.wx_app = wx_app;
}
public String getAlipay_app() {
return alipay_app;
}
public void setAlipay_app(String alipay_app) {
this.alipay_app = alipay_app;
}
@Override
public String toString() {
return "WalletPayCloudResponseBean{" +
"errorCode='" + errorCode + '\'' +
", errorMessage='" + errorMessage + '\'' +
", notify_url='" + notify_url + '\'' +
", order_id='" + order_id + '\'' +
", alipay_app='" + alipay_app + '\'' +
", wx_app=" + wx_app +
'}';
}
}