Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/adapay/common/RefundInfo.java

44 lines
691 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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;
}