CashierOrderVO.java
1.97 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
package com.diligrp.cashier.boss.domain;
import com.diligrp.cashier.pipeline.type.ChannelType;
import java.util.List;
public class CashierOrderVO {
// 交易号
private final String tradeId;
// 业务系统用户标识
private final String userId;
// 商品描述
private final String goods;
// 付款金额-元
private final String amount;
// 页面回调地址
private final String redirectUrl;
// 支付通道
private final List<PaymentPipeline> pipelines;
public CashierOrderVO(String tradeId, String userId, String goods, String amount,
String redirectUrl, List<PaymentPipeline> pipelines) {
this.tradeId = tradeId;
this.userId = userId;
this.goods = goods;
this.amount = amount;
this.redirectUrl = redirectUrl;
this.pipelines = pipelines;
}
public String getTradeId() {
return tradeId;
}
public String getUserId() {
return userId;
}
public String getGoods() {
return goods;
}
public String getAmount() {
return amount;
}
public String getRedirectUrl() {
return redirectUrl;
}
public List<PaymentPipeline> getPipelines() {
return pipelines;
}
public static class PaymentPipeline {
// 支付通道
private final Long pipelineId;
// 支付渠道
private final Integer channelId;
// 支付渠道名称
private final String channelName;
public PaymentPipeline(Long pipelineId, ChannelType channelType) {
this.pipelineId = pipelineId;
this.channelId = channelType.getCode();
this.channelName = channelType.getName();
}
public Long getPipelineId() {
return pipelineId;
}
public Integer getChannelId() {
return channelId;
}
public String getChannelName() {
return channelName;
}
}
}