Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/adapay/response/RefundResponse.java

45 lines
772 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.response;
import lombok.*;
/**
* 退款请求返回的对象
*/
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class RefundResponse extends AdapayBaseResponse{
/**
* 由 Adapay 生成的退款对象 id
*/
private String id;
/**
* 退款对象创建时间
*/
private String created_time;
/**
* 退款目标支付对象 id
*/
private String payment_id;
/**
* 退款金额(必须大于 0保留两位小数点如0.10、100.05等
*/
private String refund_amt;
/**
* 退款状态S-成功F-失败P-处理中
*/
private String trans_state;
/**
* 退款手续费
*/
private String fee_amt;
}