Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/adapay/vo/DrawCashDetailVO.java

24 lines
410 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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;
}