You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
659 B
Java
24 lines
659 B
Java
package me.mofun.config;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
@Setter
|
|
@Getter
|
|
public class QueryResult {
|
|
|
|
private String r0_Cmd; //业务类型
|
|
private String r1_Code; //查询结果
|
|
private String r2_TrxId; //易宝支付交易流水号
|
|
private String r3_Amt; //支付金额
|
|
private String r4_Cur; //交易币种
|
|
private String r5_Pid; //商品名称
|
|
private String r6_Order; //商户订单号
|
|
private String r8_MP; //商户扩展信息
|
|
private String rb_PayStatus; //支付状态
|
|
private String rc_RefundCount; //已退款次数
|
|
private String rd_RefundAmt; //已退款金额
|
|
private String hmac; //密钥
|
|
|
|
}
|