xuefei
2020-12-13 f95e2a385d4cbd07501b512079d7da6aae253a41
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
package cn.cetc54.platform.zhyl.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import cn.cetc54.platform.zhyl.entity.SubsidyLog;
import java.util.List;
import java.util.Map;
 
/**
 * 补贴日志接口
 * @author 
 */
public interface ISubsidyLogService extends IService<SubsidyLog> {
 
    /**
     * 获取补贴的总人数
     * @param areaId
     * @return
     */
    int getTotalNum(String areaId,Integer type);
 
    /**
     * 获取总金额
     * @param areaId
     * @param type
     * @return
     */
    double getTotalMoney(String areaId,Integer type);
 
    /**
     * 获取月度统计
     * @param areaId
     * @param type
     * @return
     */
    List<Map<String,Object>> getMonthTotal(String areaId,Integer type);
 
    /**
     * 获取年度统计
     * @param areaId
     * @param type
     * @return
     */
    List<Map<String,Object>> getYearTotal(String areaId,Integer type);
 
    /**
     *统计每种补贴的金额数
     * @param areaId
     * @return
     */
    List<Map<String,Object>> getTypeMoney(String areaId);
    /**
     * 每种补贴的次数
     * @param areaId
     * @return
     */
    List<Map<String,Object>> getTypeNum(String areaId);
 
}