findyguo
2021-03-02 32bd60d8406c5ab14a9d7f3fbed78278538f5fa5
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java
@@ -824,4 +824,47 @@
     */
    @PostMapping("detailadvertisement")
    R detailAdvertisement(@RequestParam("id") Long id);
    /**
     * 删除广告
     * @param id 主键
     * @return 删除结果
     */
    @PostMapping("deleteadvertisement")
    R deleteAdvertisement(@RequestParam("id")Long id);
    /**
     * 查询城市下属所有地区列表
     * @param cityAdcode 城市地址编码
     * @return 地区列表
     */
    @PostMapping("listareadistrict")
    R listAreaDistrict(@RequestParam("cityAdcode") Long cityAdcode);
    /**
     * 首页图表数据汇总
     * @param communityId 社区id
     * @return 图表数据
     */
    @PostMapping("indexdatacommunitybackstageechart")
    R indexDataCommunityBackstageEchart(@RequestParam("communityId")Long communityId);
    /**
     * 选择导入的小区
     * @param param 小区名字 模糊查询
     * @param communityId 社区id
     * @return 小区集合 ComMngStructAreaVO
     */
    @PostMapping("listareas")
    R listAreas(@RequestParam("param")String param, @RequestParam("communityId")Long communityId);
    /**
     * 检查小区是否已经批量设置过房屋并且返回小区房屋门号规则
     * @param id 小区id
     * @return ComMngStructAreaVO
     */
    @PostMapping("checkAreaHouse")
    R checkAreaHouse(@RequestParam("id")Long id);
}