WalletPayCloudRequestBean.java
2.15 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
package com.cnlive.goldenline.model.mine;
/**
* Description:
* Created on 2017/3/30
* Author : 郭
*/
public class WalletPayCloudRequestBean {
private String appId;
private String out_trade_no;
private String body;
private int total_fee;
private int type;
private String sign;
private String account;
public WalletPayCloudRequestBean() {
super();
}
public WalletPayCloudRequestBean(String appId, String out_trade_no, String body, int total_fee, int type, String sign, String account) {
this.appId = appId;
this.out_trade_no = out_trade_no;
this.body = body;
this.total_fee = total_fee;
this.type = type;
this.sign = sign;
this.account = account;
}
public String getAppId() {
return appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
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 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 getSign() {
return sign;
}
public void setSign(String sign) {
this.sign = sign;
}
public String getAccount() {
return account;
}
public void setAccount(String account) {
this.account = account;
}
@Override
public String toString() {
return "WalletPayCloudRequestBean{" +
"appId='" + appId + '\'' +
", out_trade_no='" + out_trade_no + '\'' +
", body='" + body + '\'' +
", total_fee=" + total_fee +
", type=" + type +
", sign='" + sign + '\'' +
", account='" + account + '\'' +
'}';
}
}