CashierOrderDTO.java
2.48 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
package com.diligrp.cashier.boss.domain;
public class CashierOrderDTO {
// 接入商户
private Long mchId;
// 业务系统用户标识
private String userId;
// 收银台类型 - H5收银台等
private Integer cashierType;
// 商品描述
private String goods;
// 申请金额
private Long amount;
// 超时间隔时间 - 秒
private Integer timeout;
// 外部流水号
private String outTradeNo;
// 回调地址
private String notifyUrl;
// 页面回调地址
private String redirectUrl;
// 交易描述
private String description;
// 附加数据
private String attach;
// 订单来源
private Integer source;
public Long getMchId() {
return mchId;
}
public void setMchId(Long mchId) {
this.mchId = mchId;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public Integer getCashierType() {
return cashierType;
}
public void setCashierType(Integer cashierType) {
this.cashierType = cashierType;
}
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 Integer getTimeout() {
return timeout;
}
public void setTimeout(Integer timeout) {
this.timeout = timeout;
}
public String getOutTradeNo() {
return outTradeNo;
}
public void setOutTradeNo(String outTradeNo) {
this.outTradeNo = outTradeNo;
}
public String getNotifyUrl() {
return notifyUrl;
}
public void setNotifyUrl(String notifyUrl) {
this.notifyUrl = notifyUrl;
}
public String getRedirectUrl() {
return redirectUrl;
}
public void setRedirectUrl(String redirectUrl) {
this.redirectUrl = redirectUrl;
}
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;
}
}