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