汇付基础响应

This commit is contained in:
2023-08-21 13:20:17 +08:00
parent e3f22f49c1
commit 3893afaa06
12 changed files with 140 additions and 40 deletions

View File

@@ -0,0 +1,23 @@
package com.jsowell.adapay.vo;
import lombok.Getter;
import lombok.Setter;
/**
* 查询取现信息VO
*/
@Getter
@Setter
public class DrawCashDetailVO {
// Adapay生成的取现对象 id
private String cashId;
// 取现金额
private String cashAmt;
// 取现状态S-成功,F-失败P-处理中
private String transStat;
// 状态描述
private String statusDesc;
}