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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| package cn.iocoder.yudao.module.statistics.service.trade.bo;
|
| import lombok.Data;
|
| /**
| * 会员地区统计 Response BO
| *
| * @author owen
| */
| @Data
| public class MemberAreaStatisticsRespBO {
|
| /**
| * 省份编号
| */
| private Integer areaId;
| /**
| * 省份名称
| */
| private String areaName;
|
| /**
| * 会员数量
| */
| private Integer userCount;
|
| /**
| * 下单的会员数量
| */
| private Integer orderCreateUserCount;
| /**
| * 支付订单的会员数量
| */
| private Integer orderPayUserCount;
|
| /**
| * 订单支付金额,单位:分
| */
| private Integer orderPayPrice;
|
| }
|
|