From 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期一, 09 六月 2025 11:54:00 +0800 Subject: [PATCH] 6.9新增登录失败冻结逻辑 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComStreetService.java | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 50 insertions(+), 1 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComStreetService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComStreetService.java index 2e0d06c..a221a88 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComStreetService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComStreetService.java @@ -3,7 +3,13 @@ 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; /** @@ -18,7 +24,7 @@ * 街道信息 * @return 新增结果 */ - R addStreet(ComStreetVO comStreetVO); + R<ComStreetVO> addStreet(ComStreetVO comStreetVO); /** * 查询社区 @@ -55,4 +61,47 @@ * @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); } -- Gitblit v1.7.1