| | |
| | | import java.util.Map; |
| | | |
| | | import com.panzhihua.common.model.vos.community.*; |
| | | import com.panzhihua.common.model.vos.community.acid.ComActAcidCheckRecordVO; |
| | | import com.panzhihua.common.model.vos.community.acid.ComActAcidMemberVO; |
| | | import com.panzhihua.common.model.vos.community.acid.ComActAcidRecordVO; |
| | | import com.panzhihua.common.model.vos.user.*; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | /** |
| | | * 看板用户统计:用户占比统计 |
| | | * */ |
| | | List<UserProportion> userAnalysis(@Param("type") Integer type,@Param("range") String range,@Param("streetId") Long streetId); |
| | | List<UserProportion> userAnalysis(@Param("type") Integer type,@Param("range") String range,@Param("streetId") Long streetId,@Param("areaCode")Long areaCode); |
| | | |
| | | /** |
| | | * 统计区域实名用户数 |
| | | * */ |
| | | List<RealUser> realUserCount(@Param("type") Integer type,@Param("range") String range,@Param("streetId") Long streetId); |
| | | List<RealUser> realUserCount(@Param("type") Integer type,@Param("range") String range,@Param("streetId") Long streetId,@Param("areaCode")Long areaCode); |
| | | |
| | | /** |
| | | * 统计该街道内的所有用户数 |
| | | * */ |
| | | Integer streetUserCount(@Param("id") Long id); |
| | | Integer streetUserCount(@Param("id") Long id,@Param("areaCode")Long areaCode); |
| | | |
| | | /** |
| | | * 街道用户统计 |
| | | * */ |
| | | IndexDataKanbanVO dataKanBanStreet(Long streetId); |
| | | IndexDataKanbanVO dataKanBanStreet(@Param("streetId") Long streetId,@Param("areaCode") Long areaCode); |
| | | |
| | | /** |
| | | * 获取当天的新增和日活 |
| | | * */ |
| | | Map<String,Long> getDailyAddAndActive(@Param("date") Date date,@Param("id") Long streetId); |
| | | Map<String,Long> getDailyAddAndActive(@Param("date") Date date,@Param("id") Long streetId,@Param("areaCode") Long areaCode); |
| | | |
| | | |
| | | List<StreetVO> selectStreetByAreaCode(Integer code); |
| | | |
| | | ComActAcidCheckRecordVO selectComActAcidCheckRecordById(Long id); |
| | | |
| | | ComActAcidRecordVO selectComActAcidRecord(Long id); |
| | | |
| | | ComActAcidMemberVO selectComActAcidMember(Long id); |
| | | } |