package com.ruoyi.order.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @author HJL
|
* @version 1.0
|
* @since 2024-06-11 9:22
|
*/
|
@Data
|
public class WithdrawMoneyVO {
|
|
@ApiModelProperty("提现金额总计")
|
private BigDecimal total;
|
|
@ApiModelProperty("已提现金额")
|
private BigDecimal withdraw;
|
|
@ApiModelProperty("未提现金额")
|
private BigDecimal undelivered;
|
|
public WithdrawMoneyVO(BigDecimal total, BigDecimal withdraw, BigDecimal undelivered) {
|
this.total = total;
|
this.withdraw = withdraw;
|
this.undelivered = undelivered;
|
}
|
}
|