OutpropApplyPayInfo.java
1.5 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.cjs.site.model.user.pick;
import com.cjs.site.model.BaseInfo;
/**
* Created by bruce on 2019-05-06 16:25
*/
public class OutpropApplyPayInfo extends BaseInfo {
private static final long serialVersionUID = 6737890770319470632L;
private String tradeNo;
private String clientId;
private String applyNo;
private String status;//1待支付;2已支付;3支付失败
private String payAt;
private String createdAt;
private String updatedAt;
public String getTradeNo() {
return tradeNo;
}
public void setTradeNo(String tradeNo) {
this.tradeNo = tradeNo;
}
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getApplyNo() {
return applyNo;
}
public void setApplyNo(String applyNo) {
this.applyNo = applyNo;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getPayAt() {
return payAt;
}
public void setPayAt(String payAt) {
this.payAt = payAt;
}
public String getCreatedAt() {
return createdAt;
}
public void setCreatedAt(String createdAt) {
this.createdAt = createdAt;
}
public String getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(String updatedAt) {
this.updatedAt = updatedAt;
}
}