package com.ruoyi.account.vo;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
public class WalletStatistics {
|
|
/**
|
* 用户充值总金额
|
*/
|
private BigDecimal totalRecharge;
|
|
/**
|
* 用户提现总金额
|
*/
|
private BigDecimal totalWithdraw;
|
|
/**
|
* 门店提现总金额
|
*/
|
private BigDecimal totalShopWithdraw;
|
|
private IPage<WalletStatisticsDetail> page;
|
}
|