OnlinePaymentDetailVO.java
7.71 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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
package com.diligrp.cashier.boss.domain;
public class OnlinePaymentDetailVO {
/** 主键ID */
private Long id;
/** 商户ID */
private Long mchId;
/** 商户名称 */
private String mchName;
/** 交易ID */
private String tradeId;
/** 支付ID */
private String paymentId;
/** 外部流水号 */
private String serialNo;
/** 付款人 */
private String payerId;
/** 客户账号ID */
private Long customerAccountId;
/** 客户ID */
private Long customerId;
/** 客户编码 */
private String customerCode;
/** 客户名称 */
private String customerName;
/** 支付通道 */
private Integer channelId;
/** 支付通道名称 */
private String channelName;
/** 实际支付方式 */
private Integer outPayType;
/** 实际支付方式名称 */
private String outPayTypeName;
/** 交易类型 */
private Integer tradeType;
/** 交易类型名称 */
private String tradeTypeName;
/** 商品描述 */
private String goods;
/** 申请金额-分 */
private Long amount;
/** 申请金额-文本 */
private String amountText;
/** 费用金额-分 */
private Long fee;
/** 费用金额-文本 */
private String feeText;
/** 笔数 */
private Long countTotal;
/** 支付时间 */
private String payTime;
/** 创建时间 */
private String createdTime;
/** 修改时间 */
private String modifiedTime;
/** 申请状态 */
private Integer state;
/** 申请状态名称 */
private String stateName;
/** 订单来源 */
private Integer source;
/** 订单来源名称 */
private String sourceName;
/** 交易备注 */
private String description;
/** 申请金额-分 */
private Long totalRowAmount;
/** 申请金额-文本 */
private String totalRowAmountText;
/** 费用金额-分 */
private Long totalRowFee;
/** 费用金额-文本 */
private String totalRowFeeText;
private Object totalRow;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getMchId() {
return mchId;
}
public void setMchId(Long mchId) {
this.mchId = mchId;
}
public String getMchName() {
return mchName;
}
public void setMchName(String mchName) {
this.mchName = mchName;
}
public String getTradeId() {
return tradeId;
}
public void setTradeId(String tradeId) {
this.tradeId = tradeId;
}
public String getPaymentId() {
return paymentId;
}
public void setPaymentId(String paymentId) {
this.paymentId = paymentId;
}
public String getSerialNo() {
return serialNo;
}
public void setSerialNo(String serialNo) {
this.serialNo = serialNo;
}
public String getPayerId() {
return payerId;
}
public void setPayerId(String payerId) {
this.payerId = payerId;
}
public Long getCustomerAccountId() {
return customerAccountId;
}
public void setCustomerAccountId(Long customerAccountId) {
this.customerAccountId = customerAccountId;
}
public Long getCustomerId() {
return customerId;
}
public void setCustomerId(Long customerId) {
this.customerId = customerId;
}
public String getCustomerCode() {
return customerCode;
}
public void setCustomerCode(String customerCode) {
this.customerCode = customerCode;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public Integer getChannelId() {
return channelId;
}
public void setChannelId(Integer channelId) {
this.channelId = channelId;
}
public String getChannelName() {
return channelName;
}
public void setChannelName(String channelName) {
this.channelName = channelName;
}
public Integer getOutPayType() {
return outPayType;
}
public void setOutPayType(Integer outPayType) {
this.outPayType = outPayType;
}
public String getOutPayTypeName() {
return outPayTypeName;
}
public void setOutPayTypeName(String outPayTypeName) {
this.outPayTypeName = outPayTypeName;
}
public Integer getTradeType() {
return tradeType;
}
public void setTradeType(Integer tradeType) {
this.tradeType = tradeType;
}
public String getTradeTypeName() {
return tradeTypeName;
}
public void setTradeTypeName(String tradeTypeName) {
this.tradeTypeName = tradeTypeName;
}
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 getAmountText() {
return amountText;
}
public void setAmountText(String amountText) {
this.amountText = amountText;
}
public Long getFee() {
return fee;
}
public void setFee(Long fee) {
this.fee = fee;
}
public String getFeeText() {
return feeText;
}
public void setFeeText(String feeText) {
this.feeText = feeText;
}
public Long getCountTotal() {
return countTotal;
}
public void setCountTotal(Long countTotal) {
this.countTotal = countTotal;
}
public String getPayTime() {
return payTime;
}
public void setPayTime(String payTime) {
this.payTime = payTime;
}
public String getCreatedTime() {
return createdTime;
}
public void setCreatedTime(String createdTime) {
this.createdTime = createdTime;
}
public String getModifiedTime() {
return modifiedTime;
}
public void setModifiedTime(String modifiedTime) {
this.modifiedTime = modifiedTime;
}
public Integer getState() {
return state;
}
public void setState(Integer state) {
this.state = state;
}
public String getStateName() {
return stateName;
}
public void setStateName(String stateName) {
this.stateName = stateName;
}
public Integer getSource() {
return source;
}
public void setSource(Integer source) {
this.source = source;
}
public String getSourceName() {
return sourceName;
}
public void setSourceName(String sourceName) {
this.sourceName = sourceName;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Long getTotalRowAmount() {
return totalRowAmount;
}
public void setTotalRowAmount(Long totalRowAmount) {
this.totalRowAmount = totalRowAmount;
}
public String getTotalRowAmountText() {
return totalRowAmountText;
}
public void setTotalRowAmountText(String totalRowAmountText) {
this.totalRowAmountText = totalRowAmountText;
}
public Long getTotalRowFee() {
return totalRowFee;
}
public void setTotalRowFee(Long totalRowFee) {
this.totalRowFee = totalRowFee;
}
public String getTotalRowFeeText() {
return totalRowFeeText;
}
public void setTotalRowFeeText(String totalRowFeeText) {
this.totalRowFeeText = totalRowFeeText;
}
public Object getTotalRow() {
return totalRow;
}
public void setTotalRow(Object totalRow) {
this.totalRow = totalRow;
}
}