TradeOrder.java
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
package com.diligrp.cashier.trade.model;
import com.diligrp.cashier.shared.domain.BaseDO;
import java.time.LocalDateTime;
/**
* 交易订单数据模型
*/
public class TradeOrder extends BaseDO {
// 商户ID
private Long mchId;
// 交易ID
private String tradeId;
// 交易类型
private Integer type;
// 外部流水号
private String outTradeNo;
// 金额-分
private Long amount;
// 初始金额-分
private Long maxAmount;
// 商品描述
private String goods;
// 订单超时时间-秒
private Integer timeout;
// 交易状态
private Integer state;
// 业务回调地址
private String notifyUrl;
// 交易备注
private String description;
// 附加数据
private String attach;
// 收银台来源
private Integer source;
public Long getMchId() {
return mchId;
}
public void setMchId(Long mchId) {
this.mchId = mchId;
}
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 getOutTradeNo() {
return outTradeNo;
}
public void setOutTradeNo(String outTradeNo) {
this.outTradeNo = outTradeNo;
}
public Long getAmount() {
return amount;
}
public void setAmount(Long amount) {
this.amount = amount;
}
public Long getMaxAmount() {
return maxAmount;
}
public void setMaxAmount(Long maxAmount) {
this.maxAmount = maxAmount;
}
public String getGoods() {
return goods;
}
public void setGoods(String goods) {
this.goods = goods;
}
public Integer getTimeout() {
return timeout;
}
public void setTimeout(Integer timeout) {
this.timeout = timeout;
}
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 String getAttach() {
return attach;
}
public void setAttach(String attach) {
this.attach = attach;
}
public Integer getSource() {
return source;
}
public void setSource(Integer source) {
this.source = source;
}
public static Builder builder() {
return new TradeOrder().new Builder();
}
public class Builder {
public Builder mchId(Long mchId) {
TradeOrder.this.mchId = mchId;
return this;
}
public Builder tradeId(String tradeId) {
TradeOrder.this.tradeId = tradeId;
return this;
}
public Builder type(Integer type) {
TradeOrder.this.type = type;
return this;
}
public Builder outTradeNo(String outTradeNo) {
TradeOrder.this.outTradeNo = outTradeNo;
return this;
}
public Builder amount(Long amount) {
TradeOrder.this.amount = amount;
return this;
}
public Builder maxAmount(Long maxAmount) {
TradeOrder.this.maxAmount = maxAmount;
return this;
}
public Builder goods(String goods) {
TradeOrder.this.goods = goods;
return this;
}
public Builder timeout(Integer timeout) {
TradeOrder.this.timeout = timeout;
return this;
}
public Builder state(Integer state) {
TradeOrder.this.state = state;
return this;
}
public Builder notifyUrl(String notifyUrl) {
TradeOrder.this.notifyUrl = notifyUrl;
return this;
}
public Builder description(String description) {
TradeOrder.this.description = description;
return this;
}
public Builder attach(String attach) {
TradeOrder.this.attach = attach;
return this;
}
public Builder source(Integer source) {
TradeOrder.this.source = source;
return this;
}
public Builder version(Integer version) {
TradeOrder.this.version = version;
return this;
}
public Builder createdTime(LocalDateTime createdTime) {
TradeOrder.this.createdTime = createdTime;
return this;
}
public Builder modifiedTime(LocalDateTime modifiedTime) {
TradeOrder.this.modifiedTime = modifiedTime;
return this;
}
public TradeOrder build() {
return TradeOrder.this;
}
}
}