OnlineRefundDTO.java
913 Bytes
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
package com.diligrp.cashier.trade.domain;
/**
* 退款申请
*/
public class OnlineRefundDTO {
// 原支付号
private String tradeId;
// 退款金额
private Long amount;
// 回调地址
private String notifyUrl;
// 退款原因
private String description;
public String getTradeId() {
return tradeId;
}
public void setTradeId(String tradeId) {
this.tradeId = tradeId;
}
public Long getAmount() {
return amount;
}
public void setAmount(Long amount) {
this.amount = amount;
}
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;
}
}