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);
|
|
}
|