张天森
2023-02-06 2e2bcc55ea6eb6fd63dae451bdd26f4b9875db40
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
package com.panzhihua.service_community.dao;
 
import com.panzhihua.common.model.vos.DateVO;
import com.panzhihua.common.model.vos.community.building.admin.PageBuildingListAdminVo;
import com.panzhihua.common.model.vos.puda.*;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
@Mapper
public interface ComScreenDao {
    /**
     * 自治动态统计
     * @return 处理结果
     * */
    DynamicVO autonomyDynamic(Long communityId);
 
    /**
     * 红色物业
     * @return 处理结果
     * */
    PropertyVO propertyData(Long community);
 
    /**
     * 党建数据
     * @return 处理结果
     * */
    PartyDataVO partyData(Long communityId);
 
 
    /**
     * 小区院落
     * @return 处理结果
     * */
    YardVO yard(Long communityId);
 
    /**
     * 基础数据
     * @return 处理结果
     * */
    BasicDataVO basicData(Long communityId);
 
    CitizenInfoVO ageRange(@Param("vo") DateVO vo);
 
    /**
     * 特殊人群统计
     * @return
     * */
    List<SpecialPeopleVO> specialPeople(Long communityId);
 
    PageBuildingListAdminVo peopleInfoAdmin(Long communityId);
 
}