| | |
| | | package com.panzhihua.service_jinhui_community.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.common.model.vos.jinhui.JinhuiCommunityServicesVO; |
| | | import com.panzhihua.common.model.vos.jinhui.JinhuiIndexInfoVO; |
| | | import com.panzhihua.common.model.vos.jinhui.JinhuiMerchantTypeVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface JinhuiLargeScreenService extends IService<String> |
| | | { |
| | |
| | | * @param |
| | | * @return |
| | | */ |
| | | String getMienNum(@Param("communityId") String communityId); |
| | | String getMienNum(String communityId); |
| | | |
| | | /** |
| | | * 获取志愿者服务 |
| | | * @return |
| | | */ |
| | | String getVolunteerServeNum(@Param("communityId") String communityId); |
| | | String getVolunteerServeNum(String communityId); |
| | | |
| | | /** |
| | | * 获取微心愿数量 |
| | | * @param |
| | | * @return |
| | | */ |
| | | String getMicroVolunteeringNum(@Param("state") String state); |
| | | String getMicroVolunteeringNum(String state); |
| | | |
| | | |
| | | /** |
| | | * 便民服务商家 |
| | | * @return |
| | | */ |
| | | String getConvenientMerchantsNum(@Param("auditType") String auditType); |
| | | String getConvenientMerchantsNum(String auditType); |
| | | |
| | | /** |
| | | * 商家分类统计 |
| | | * @return |
| | | */ |
| | | List<JinhuiMerchantTypeVO> getMerchantTypeNum(); |
| | | |
| | | /** |
| | | * 获取党员 志愿者 |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | JinhuiCommunityServicesVO baseInfo(String communityId); |
| | | |
| | | /** |
| | | * 办事直指南 |
| | | * @return |
| | | */ |
| | | String getWorkGuideNum(); |
| | | |
| | | /** |
| | | * 空间预约 |
| | | * @return |
| | | */ |
| | | String getInterspaceApplyNum(@Param("state") String state); |
| | | |
| | | |
| | | /** |
| | | * 商城订单 |
| | | * @param cancelType |
| | | * @return |
| | | */ |
| | | String getShoppingOrderNum(@Param("cancelType") String cancelType); |
| | | |
| | | /** |
| | | * 获取社区工作者 |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | String getServiceTeam(@Param("communityId") String communityId, |
| | | @Param("type") String type); |
| | | |
| | | |
| | | |
| | | |
| | | } |