Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/adapay/vo/AdapayAccountBalanceVO.java
2023-06-13 11:28:15 +08:00

26 lines
645 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.*;
import java.math.BigDecimal;
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class AdapayAccountBalanceVO {
// 账户余额,账户余额 = 可用余额 + 冻结余额
private BigDecimal acctBalance;
// 可用余额该余额大于0时才可发起取现。
private BigDecimal avlBalance;
// 冻结余额,当配置了自动结算功能,在每日发起结算时会将可用余额转为冻结金额。该部分金额不允许取现。
private BigDecimal frzBalance;
// 昨日日终余额。
private BigDecimal lastAvlBalance;
}