WalletResponseBean.java
3.26 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
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
package com.cnlive.goldenline.model.mine;
import com.cnlive.goldenline.model.response.BaseResponse;
/**
* Description:
* Created on 2017/3/29
* Author : 郭
*/
public class WalletResponseBean extends BaseResponse {
private String id;
private String virtualCoin;
private String userId;
private String appId;//视讯云上注册对应的appid
private String body;//订单信息
private int total_fee;//订单总额 单位(分)
private int type;//订单支付方式
private String ver;//app版本号
private String out_trade_no;//订单id
private String notify_url;// 回调url
private String timestamp;// 时间戳
private String account;
private String sign;// 签名
public String getAppId() {
return appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
public int getTotal_fee() {
return total_fee;
}
public void setTotal_fee(int total_fee) {
this.total_fee = total_fee;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public String getVer() {
return ver;
}
public void setVer(String ver) {
this.ver = ver;
}
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 getNotify_url() {
return notify_url;
}
public void setNotify_url(String notify_url) {
this.notify_url = notify_url;
}
public String getTimestamp() {
return timestamp;
}
public void setTimestamp(String timestamp) {
this.timestamp = timestamp;
}
public String getSign() {
return sign;
}
public void setSign(String sign) {
this.sign = sign;
}
public String getAccount() {
return account;
}
public void setAccount(String account) {
this.account = account;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getVirtualCoin() {
return virtualCoin;
}
public void setVirtualCoin(String virtualCoin) {
this.virtualCoin = virtualCoin;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
@Override
public String toString() {
return "WalletResponseBean{" +
"id='" + id + '\'' +
", virtualCoin='" + virtualCoin + '\'' +
", userId='" + userId + '\'' +
", appId='" + appId + '\'' +
", body='" + body + '\'' +
", total_fee=" + total_fee +
", type=" + type +
", ver='" + ver + '\'' +
", out_trade_no='" + out_trade_no + '\'' +
", notify_url='" + notify_url + '\'' +
", timestamp='" + timestamp + '\'' +
", account='" + account + '\'' +
", sign='" + sign + '\'' +
'}';
}
}