mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 04:25:21 +08:00
查询退款对象
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
package com.jsowell.adapay.common;
|
||||
|
||||
import lombok.*;
|
||||
|
||||
/**
|
||||
* 退款对象
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
public class RefundInfo {
|
||||
/**
|
||||
* Adapay生成的退款对象id
|
||||
*/
|
||||
private String refund_id;
|
||||
|
||||
/**
|
||||
* 退款状态:I-初始,P-处理中,F-失败,S-成功
|
||||
*/
|
||||
private String trans_status;
|
||||
|
||||
/**
|
||||
* Adapay生成的支付对象id
|
||||
*/
|
||||
private String payment_id;
|
||||
|
||||
/**
|
||||
* 退款金额
|
||||
*/
|
||||
private String refund_amt;
|
||||
|
||||
/**
|
||||
* 退款手续费,退款成功时有值
|
||||
*/
|
||||
private String fee_amt;
|
||||
|
||||
/**
|
||||
* 退款订单号
|
||||
*/
|
||||
private String refund_order_no;
|
||||
}
|
||||
Reference in New Issue
Block a user