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
64
65
66
67
68
69
package com.dg.core.service;
 
import com.dg.core.db.gen.entity.Guidance;
import com.dg.core.db.gen.entity.GuidePlate;
import com.dg.core.db.gen.entity.OrganizationEntity;
 
import java.util.List;
 
public interface HomeStatisticsService
{
    /**
     * 按办结量排序
     * @return
     */
    List<GuidePlate> guidePlatePeople();
 
    /**
     *按评分排序
     * @return
     */
    List<GuidePlate> score();
 
    /**
     * 按超时
     * @return
     */
    List<GuidePlate> timeout();
 
    /**
     * 评分
     * @return
     */
    Integer organizationScore(List<String> ids);
 
    /**
     * 办结量
     * @return
     */
    Integer organizationNum(List<String> ids);
    /**
     * 获取一级部门
     * @return
     */
    List<OrganizationEntity> getDepartment();
 
    /**
     * 办事指南根据导办数量排序
     * @return
     */
    List<Guidance> guidanceTransaction();
 
    /**
     * 办事指南根据浏览数量排序
     * @return
     */
    List<Guidance> guidanceBrowse();
 
    /**
     * 导办人员统计数
     * @return
     */
    Integer staffNum();
 
    /**
     * 办事指南数量统计
     * @return
     */
    Integer countWork();
}