WalletRequestBean.java
1.19 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
package com.cnlive.goldenline.model.mine;
/**
* Description:
* Created on 2017/3/29
* Author : 郭
*/
public class WalletRequestBean {
private String userId;
private String appId;//视讯云上注册对应的appid
private String body;//订单信息
private int total_fee;//订单总额 单位(分)
private int type;//订单支付方式
private String ver;//app版本号
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 getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}