mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package com.panzhihua.service_community.service;
 
import java.util.List;
 
import com.panzhihua.common.model.dtos.community.PageComStreetDTO;
import com.panzhihua.common.model.dtos.community.building.BuildingDto;
import com.panzhihua.common.model.dtos.community.large.AreaStreetDetail;
import com.panzhihua.common.model.dtos.community.large.AreaStreetDetailResp;
import com.panzhihua.common.model.dtos.community.large.SumAreaStreetResp;
import com.panzhihua.common.model.dtos.partybuilding.QryReportResp;
import com.panzhihua.common.model.vos.R;
import com.panzhihua.common.model.vos.community.ComActVO;
import com.panzhihua.common.model.vos.community.ComStreetVO;
 
/**
 * @author: llming
 * @description: 街道
 **/
public interface ComStreetService {
    /**
     * 添加街道
     * 
     * @param comStreetVO
     *            街道信息
     * @return 新增结果
     */
    R<ComStreetVO> addStreet(ComStreetVO comStreetVO);
 
    /**
     * 查询社区
     * 
     * @param comStreetVO
     *            登录人的经纬度、或者指定区域的社区
     * @return 社区集合
     */
    R listStreet(ComStreetVO comStreetVO);
 
    /**
     * 街道详情
     * 
     * @param streetId
     *            社区id
     * @return 社区详情
     */
    R detailStreet(Long streetId);
 
    /**
     * 分页查询街道
     * 
     * @param pageComStreetDTO
     *            查询参数
     * @return 分页集合
     */
    R pageStreet(PageComStreetDTO pageComStreetDTO);
 
    /**
     * 删除社区
     * 
     * @param Ids
     *            社区id
     * @return 删除结果
     */
    R delectStreat(List<Long> Ids);
 
    /**
     * 修改街道信息
     * @param comStreetVO 街道信息
     * */
    R update(ComStreetVO comStreetVO);
 
    /**
     * 删除街道
     * */
    R remove(Long id);
    /**
     * 删除社区
     * */
    R removeCommunity(Long id);
 
    /**
     * 重置社区密码
     * */
    R repassCommunity(ComActVO comActVO);
 
 
    /**
     * 重置街道密码
     * */
    R repssStreet(ComStreetVO comActVO);
 
    R panzhihuaMap(String areaCode);
    R searchStreet(BuildingDto buildingDto);
 
    R oneTagThreeReal(Long street);
 
    R getScreenStatics();
 
    R populationStatics(Long streetId);
 
    R probably(Integer year,String belongTo);
 
    SumAreaStreetResp sumAreaStreet();
 
    AreaStreetDetail areaStreetDetail(String code, String type);
 
    List<QryReportResp> qryReport(String yearTime);
}