1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package cn.iocoder.yudao.module.statistics.service.pay.bo;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| /**
| * 充值统计 Response BO
| */
| @Data
| public class RechargeSummaryRespBO {
|
| /**
| * 充值会员数量
| */
| private Integer rechargeUserCount;
|
| /**
| * 充值金额
| */
| private Integer rechargePrice;
|
| }
|
|