mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 05:55:03 +08:00
update
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user