mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package com.panzhihua.service_community.service;
 
import com.panzhihua.common.model.vos.R;
 
/**
 * @author xyh
 * @date 2021/6/15 15:14
 */
public interface ScreenWorkService {
 
    /**
     * 大屏统计邻里圈
     * 
     * @param communityId
     * @return
     */
    R statisticNeighborCircle(Long communityId);
 
    /**
     * 大屏统计心愿单
     * 
     * @param communityId
     * @return
     */
    R wish(Long communityId);
 
    /**
     * 大屏统计社区活动
     * 
     * @param communityId
     * @return
     */
    R activity(Long communityId);
 
    /**
     * 大屏统计一起议
     * 
     * @param communityId
     * @return
     */
    R discuss(Long communityId);
 
    /**
     * 大屏统计党建工作
     * 
     * @param communityId
     * @return
     */
    R pbWork(Long communityId);
 
    /**
     * 大屏统计随手拍
     * 
     * @param communityId
     * @return
     */
    R easyPhoto(Long communityId);
 
    /**
     * 大屏统计工作情况
     * 
     * @param communityId
     * @return
     */
    R workCount(Long communityId);
 
    R dynamicWork(Long communityId);
 
    /**
     * 自治动态
     * */
    R autonomyDynamic(Long communityId);
 
    /**
     * 红色物业
     * */
    R property(Long communityId);
 
    /**
     * 党建数据
     * */
    R partyData(Long communityId);
 
    /**
     * 小区院落
     * */
    R yard(Long communityId);
 
    /**
     *居民信息
     * */
    R citizenInfo(Long communityId);
 
    /**
     * 特殊人群信息
     * */
    R specialPeople(Long communityId);
 
    /**
     * 基础数据
     * */
    R basicData(Long communityId);
}