luodangjia
2024-12-19 60f70f7409ec1ece8905e088fb43e0cb0258a70b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
}