mirror of
https://gitee.com/egzosn/pay-java-parent.git
synced 2026-05-08 12:06:07 +08:00
退款实现
回调校验实现
This commit is contained in:
@@ -75,6 +75,7 @@ public interface PayService {
|
||||
* @param id 业务id, 数据的真实性.
|
||||
* @return true通过
|
||||
*/
|
||||
@Deprecated
|
||||
boolean verifySource(String id);
|
||||
|
||||
|
||||
|
||||
@@ -38,6 +38,15 @@ public class RefundOrder {
|
||||
*/
|
||||
private Date orderDate;
|
||||
|
||||
/**
|
||||
* 货币
|
||||
*/
|
||||
private CurType curType;
|
||||
/**
|
||||
* 退款说明
|
||||
*/
|
||||
private String description;
|
||||
|
||||
public String getRefundNo() {
|
||||
return refundNo;
|
||||
}
|
||||
@@ -86,6 +95,22 @@ public class RefundOrder {
|
||||
this.orderDate = orderDate;
|
||||
}
|
||||
|
||||
public CurType getCurType() {
|
||||
return curType;
|
||||
}
|
||||
|
||||
public void setCurType(CurType curType) {
|
||||
this.curType = curType;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public RefundOrder() {
|
||||
}
|
||||
|
||||
@@ -109,4 +134,6 @@ public class RefundOrder {
|
||||
this.refundAmount = refundAmount;
|
||||
this.totalAmount = totalAmount;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user