mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
汇付基础响应
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user