CreateQrCode.java
1.3 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
package com.cjs.site.model.union;
import com.cjs.site.util.union.UnionConstants;
import java.io.Serializable;
/**
* Created by bruce on 2019-05-14 11:00
*/
public class CreateQrCode extends BaseRequest implements Serializable {
private static final long serialVersionUID = 4945657951041450816L;
private String msgType = "bills.getQRCode";
private String srcReserve;
private String totalAmount;
private String qrCodeId;
private String notifyUrl = UnionConstants.DOMAIN + "/pick/unionPay/notify";
public String getMsgType() {
return msgType;
}
public void setMsgType(String msgType) {
this.msgType = msgType;
}
public String getSrcReserve() {
return srcReserve;
}
public void setSrcReserve(String srcReserve) {
this.srcReserve = srcReserve;
}
public String getTotalAmount() {
return totalAmount;
}
public void setTotalAmount(String totalAmount) {
this.totalAmount = totalAmount;
}
public String getQrCodeId() {
return qrCodeId;
}
public void setQrCodeId(String qrCodeId) {
this.qrCodeId = qrCodeId;
}
public String getNotifyUrl() {
return notifyUrl;
}
public void setNotifyUrl(String notifyUrl) {
this.notifyUrl = notifyUrl;
}
}