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
| package com.yeshi.fanli.service.inter.count;
|
|
|
| public interface UserInfoCountService {
|
|
| /**
| * 统计用户个数
| * @param isToday 统计今日
| * @param isMonth 统计当月 二则不可同时存在
| * @return
| */
| public long countNewUser(Integer isToday, Integer isMonth);
|
| /**
| * 根据等级统计用户数量
| * @param rank
| * @return
| */
| public long countRank(Integer rank);
|
| /**
| * 统计所有用户总金额 或 可提现金额
| * @param minMoney
| * @return
| */
| public double countAllMoney(Double minMoney);
|
|
| }
|
|