OnlinePayment.java
7.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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
package com.diligrp.cashier.trade.model;
import com.diligrp.cashier.pipeline.type.ChannelType;
import com.diligrp.cashier.pipeline.type.OutPaymentType;
import com.diligrp.cashier.pipeline.type.PaymentState;
import com.diligrp.cashier.pipeline.type.PaymentType;
import com.diligrp.cashier.shared.domain.BaseDO;
import com.diligrp.cashier.trade.type.TradeType;
import java.time.LocalDateTime;
public class OnlinePayment extends BaseDO {
// 外部商户号
private String outMchId;
// 订单ID
private String tradeId;
// 交易类型
private Integer type;
// 支付ID
private String paymentId;
// 支付通道
private Integer channelId;
// 支付方式
private Integer payType;
// 客户ID
private Long pipelineId;
// 微信商品描述
private String goods;
// 申请金额-分
private Long amount;
// 操作对象-比如:prepareId,二维码,或退款时的原单号
private String objectId;
// 支付方-如微信openId
private String payerId;
// 支付时间
private LocalDateTime finishTime;
// 通道流水号
private String outTradeNo;
// 实际支付方式-聚合支付通道使用
private Integer outPayType;
// 申请状态
private Integer state;
// 业务回调地址
private String notifyUrl;
// 备注
private String description;
public String getOutMchId() {
return outMchId;
}
public void setOutMchId(String outMchId) {
this.outMchId = outMchId;
}
public String getTradeId() {
return tradeId;
}
public void setTradeId(String tradeId) {
this.tradeId = tradeId;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public String getPaymentId() {
return paymentId;
}
public void setPaymentId(String paymentId) {
this.paymentId = paymentId;
}
public Integer getChannelId() {
return channelId;
}
public void setChannelId(Integer channelId) {
this.channelId = channelId;
}
public Integer getPayType() {
return payType;
}
public void setPayType(Integer payType) {
this.payType = payType;
}
public Long getPipelineId() {
return pipelineId;
}
public void setPipelineId(Long pipelineId) {
this.pipelineId = pipelineId;
}
public String getGoods() {
return goods;
}
public void setGoods(String goods) {
this.goods = goods;
}
public Long getAmount() {
return amount;
}
public void setAmount(Long amount) {
this.amount = amount;
}
public String getObjectId() {
return objectId;
}
public void setObjectId(String objectId) {
this.objectId = objectId;
}
public String getPayerId() {
return payerId;
}
public void setPayerId(String payerId) {
this.payerId = payerId;
}
public LocalDateTime getFinishTime() {
return finishTime;
}
public void setFinishTime(LocalDateTime finishTime) {
this.finishTime = finishTime;
}
public String getOutTradeNo() {
return outTradeNo;
}
public void setOutTradeNo(String outTradeNo) {
this.outTradeNo = outTradeNo;
}
public Integer getOutPayType() {
return outPayType;
}
public void setOutPayType(Integer outPayType) {
this.outPayType = outPayType;
}
public Integer getState() {
return state;
}
public void setState(Integer state) {
this.state = state;
}
public String getNotifyUrl() {
return notifyUrl;
}
public void setNotifyUrl(String notifyUrl) {
this.notifyUrl = notifyUrl;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public static Builder builder() {
return new OnlinePayment().new Builder();
}
public class Builder {
public Builder outMchId(String outMchId) {
OnlinePayment.this.outMchId = outMchId;
return this;
}
public Builder tradeId(String tradeId) {
OnlinePayment.this.tradeId = tradeId;
return this;
}
public Builder type(TradeType type) {
OnlinePayment.this.type = type.getCode();
return this;
}
public Builder paymentId(String paymentId) {
OnlinePayment.this.paymentId = paymentId;
return this;
}
public Builder channelId(ChannelType channelType) {
OnlinePayment.this.channelId = channelType.getCode();
return this;
}
public Builder channelId(Integer channelType) {
OnlinePayment.this.channelId = channelType;
return this;
}
public Builder payType(PaymentType payType) {
OnlinePayment.this.payType = payType.getCode();
return this;
}
public Builder payType(Integer payType) {
OnlinePayment.this.payType = payType;
return this;
}
public Builder pipelineId(Long pipelineId) {
OnlinePayment.this.pipelineId = pipelineId;
return this;
}
public Builder goods(String goods) {
OnlinePayment.this.goods = goods;
return this;
}
public Builder amount(Long amount) {
OnlinePayment.this.amount = amount;
return this;
}
public Builder objectId(String objectId) {
OnlinePayment.this.objectId = objectId;
return this;
}
public Builder payerId(String payerId) {
OnlinePayment.this.payerId = payerId;
return this;
}
public Builder finishTime(LocalDateTime payTime) {
OnlinePayment.this.finishTime = payTime;
return this;
}
public Builder outTradeNo(String outTradeNo) {
OnlinePayment.this.outTradeNo = outTradeNo;
return this;
}
public Builder outPayType(OutPaymentType outPayType) {
OnlinePayment.this.outPayType = outPayType.getCode();
return this;
}
public Builder outPayType(Integer outPayType) {
OnlinePayment.this.outPayType = outPayType;
return this;
}
public Builder state(PaymentState state) {
OnlinePayment.this.state = state.getCode();
return this;
}
public Builder state(Integer state) {
OnlinePayment.this.state = state;
return this;
}
public Builder notifyUrl(String notifyUrl) {
OnlinePayment.this.notifyUrl = notifyUrl;
return this;
}
public Builder description(String description) {
OnlinePayment.this.description = description;
return this;
}
public Builder version(Integer version) {
OnlinePayment.this.version = version;
return this;
}
public Builder createdTime(LocalDateTime createdTime) {
OnlinePayment.this.createdTime = createdTime;
return this;
}
public Builder modifiedTime(LocalDateTime modifiedTime) {
OnlinePayment.this.modifiedTime = modifiedTime;
return this;
}
public OnlinePayment build() {
return OnlinePayment.this;
}
}
}