mitao
2024-07-08 022a7ff7abf82cd2546e18071ade5228b4e2339f
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.sinata.modular.system.dao;
 
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
 * @Description 首页报表
 */
public interface IndexReportMapper {
 
    /**
     * 注册人数-趋势图(天)
     */
    public List<Map<String,Object>> getUserCountByDayForTrend(@Param("beginTime") String beginTime, @Param("endTime") String endTime);
 
    /**
     * 注册人数-趋势图(月)
     */
    public List<Map<String,Object>> getUserCountByMonthForTrend(@Param("beginTime") String beginTime, @Param("endTime") String endTime);
 
    /**
     * 已认证用户-趋势图(天)
     */
    public List<Map<String,Object>> getAuditUserCountByDayForTrend(@Param("beginTime") String beginTime, @Param("endTime") String endTime);
 
    /**
     * 已认证用户-趋势图(月)
     */
    public List<Map<String,Object>> getAuditUserCountByMonthForTrend(@Param("beginTime") String beginTime, @Param("endTime") String endTime);
 
    /**
     * 商家申请数-趋势图(天)
     */
    public List<Map<String,Object>> getMerchantCountByDayForTrend(@Param("beginTime") String beginTime, @Param("endTime") String endTime);
 
    /**
     * 商家申请数-趋势图(月)
     */
    public List<Map<String,Object>> getMerchantCountByMonthForTrend(@Param("beginTime") String beginTime, @Param("endTime") String endTime);
 
    /**
     * 贡献值总量-趋势图(天)
     */
    public List<Map<String,Object>> getContributionScoreByDayForTrend(@Param("beginTime") String beginTime, @Param("endTime") String endTime, @Param("type") Integer type);
 
    /**
     * 贡献值总量-趋势图(月)
     */
    public List<Map<String,Object>> getContributionScoreByMonthForTrend(@Param("beginTime") String beginTime, @Param("endTime") String endTime, @Param("type") Integer type);
 
    /**
     * 米粒总量-趋势图(天)
     */
    public List<Map<String,Object>> getRiceGrainsByDayForTrend(@Param("beginTime") String beginTime, @Param("endTime") String endTime, @Param("type") Integer type);
 
    /**
     * 米粒总量-趋势图(月)
     */
    public List<Map<String,Object>> getRiceGrainsByMonthForTrend(@Param("beginTime") String beginTime, @Param("endTime") String endTime, @Param("type") Integer type);
 
}