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/impl/ComActNeighborCircleTopicServiceImpl.java |   13 +++++++++++--
 1 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActNeighborCircleTopicServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActNeighborCircleTopicServiceImpl.java
index 03e03b3..7d68d36 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActNeighborCircleTopicServiceImpl.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActNeighborCircleTopicServiceImpl.java
@@ -3,8 +3,10 @@
 import java.util.Date;
 
 import com.panzhihua.service_community.dao.ComActNeighborCircleDAO;
+import com.panzhihua.service_community.dao.ComActNeighborCircleTopicNewMapper;
 import com.panzhihua.service_community.model.dos.ComActNeighborCircleDO;
 import org.springframework.beans.BeanUtils;
+import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 
 import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
@@ -35,6 +37,8 @@
 
     @Resource
     private ComActNeighborCircleDAO comActNeighborCircleDAO;
+    @Autowired
+    private ComActNeighborCircleTopicNewMapper comActNeighborCircleTopicNewMapper;
     /**
      * 分页查询邻里圈话题列表
      *
@@ -103,8 +107,13 @@
      * @return 邻里圈话题列表
      */
     @Override
-    public R getNeighborTopicByApp(String name, Integer belongType){
-        return R.ok(this.baseMapper.getNeighborTopicByApp(name, belongType));
+    public R getNeighborTopicByApp(String name){
+        return R.ok(this.baseMapper.getNeighborTopicByApp(name));
+    }
+
+    @Override
+    public R getNeighborTopicByAppNew(String name) {
+        return R.ok(comActNeighborCircleTopicNewMapper.getNeighborTopicByAppNew(name));
     }
 
     /**

--
Gitblit v1.7.1