huminmin
5 天以前 7591ba21194595cc8d9a1293dfdbfa945bc9948f
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;
 
}