This commit is contained in:
2023-08-05 16:15:20 +08:00
parent 593ee7d16f
commit cb534520b3
5 changed files with 155 additions and 73 deletions

View File

@@ -0,0 +1,55 @@
package com.jsowell.adapay.response;
import lombok.*;
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class BalancePaymentResponse {
/**
* 当前交易结果状态,参见 状态 说明
*/
private String status;
private String error_code;
private String error_msg;
private String error_type;
/**
* 商户客户号
*/
private String mer_cust_id;
/**
*
* 应用ID
*/
private String app_id;
/**
* 订单号
*/
private String order_no;
/**
* 交易金额
*/
private String trans_amt;
/**
* 手续费
*/
private String fee_amt;
/**
* 余额支付流水号
*/
private String balance_seq_id;
/**
* 支付模式
*/
private String pay_mode;
}