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/BcRegionService.java |   19 ++++++++++++++++---
 1 files changed, 16 insertions(+), 3 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/BcRegionService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/BcRegionService.java
index c89ce30..5be2862 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/BcRegionService.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/BcRegionService.java
@@ -4,6 +4,7 @@
 import com.panzhihua.common.model.dtos.property.CommonPage;
 import com.baomidou.mybatisplus.extension.service.IService;
 import com.panzhihua.service_community.entity.BcRegion;
+import org.springframework.web.bind.annotation.RequestParam;
 
 /**
  * 行政区划表(BcRegion)表服务接口
@@ -15,10 +16,22 @@
  */
 public interface BcRegionService extends IService<BcRegion> {
     /**
-     * 分页查询
      *
-     * @param name
      * @return
      */
-    R pageList(String name);
+    R pageList(String province, String city, String country,String town);
+
+    R selectCommunityCodeByName( String city, String country,String town,String villagetr);
+
+    /**
+     * 四级联动列表
+     * @return
+     */
+    R levelList(Integer level,String code);
+
+    /**
+     * 四级联动列表
+     * @return
+     */
+    R levelListBackstage();
 }

--
Gitblit v1.7.1