| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.common.model.dtos.PageBaseDTO; |
| | | import com.panzhihua.common.model.dtos.community.fms.PageFmsServiceAdminDTO; |
| | | import com.panzhihua.common.model.dtos.community.fms.PageFmsServiceAppletsDTO; |
| | | import com.panzhihua.common.model.vos.community.StatisticsCommVO; |
| | | import com.panzhihua.common.model.vos.community.bigscreen.BigScreenFmsStatisticsInfo; |
| | | import com.panzhihua.common.model.vos.community.fms.ComFmsServiceVO; |
| | | import com.panzhihua.common.model.vos.community.fms.ComFmsTeamVO; |
| | | import com.panzhihua.common.model.vos.community.fms.FmsServiceTopStatisticsVO; |
| | | import com.panzhihua.common.model.vos.grid.EventVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import com.panzhihua.service_community.entity.ComFmsService; |
| | |
| | | * @return |
| | | */ |
| | | IPage<ComFmsServiceVO> pageDealFmsService(@Param("page") Page page, @Param("adminDTO") PageFmsServiceAppletsDTO adminDTO); |
| | | |
| | | /** |
| | | * 获取五微服务基础数据 |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | BigScreenFmsStatisticsInfo getFmsBaseData(@Param("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 获取团队类型占比圆形图数据 |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | List<ComFmsTeamVO> retrieveTeamTypeCircleData(@Param("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 微服务新增折线数据 |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | List<StatisticsCommVO> retrieveServiceAddPolylineData(@Param("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 报事报修累计折线数据获取 |
| | | * @param communityId |
| | | * @param date |
| | | * @return |
| | | */ |
| | | StatisticsCommVO retrieveServiceTotalPolylineData(@Param("communityId") Long communityId, @Param("date") String date); |
| | | |
| | | /** |
| | | * 获取微调节矛盾类型占比圆形图数据 |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | List<EventVO> retrieveAdjustCircleData(@Param("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 新增解决矛盾折线数据 |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | List<StatisticsCommVO> retrieveAdjustAddPolylineData(@Param("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 累计解决矛盾折线数据 |
| | | * @param communityId |
| | | * @param date |
| | | * @return |
| | | */ |
| | | StatisticsCommVO retrieveAdjustTotalPolylineData(@Param("communityId") Long communityId, @Param("date") String date); |
| | | |
| | | /** |
| | | * 微防控防控类型占比圆形图数据 |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | List<EventVO> retrieveControlCircleData(@Param("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 杨家坪定制页面-微团队展示列表 |
| | | * @param pageBaseDTO |
| | | * @return |
| | | */ |
| | | IPage<ComFmsTeamVO> pageFmsTeam(@Param("page") Page page, @Param("pageBaseDTO") PageBaseDTO pageBaseDTO); |
| | | } |