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/dao/SysConfMapper.java |   31 +++++++++++++++++++++----------
 1 files changed, 21 insertions(+), 10 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/SysConfMapper.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/SysConfMapper.java
index f72c1e3..2929a46 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/SysConfMapper.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/SysConfMapper.java
@@ -1,13 +1,15 @@
 package com.panzhihua.service_community.dao;
 
+import com.panzhihua.common.model.vos.community.CommunityPublicityVO;
+import org.apache.ibatis.annotations.Mapper;
+import org.apache.ibatis.annotations.Param;
+
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import com.panzhihua.common.model.dtos.community.PageSysConfDTO;
 import com.panzhihua.common.model.vos.community.SysConfVO;
 import com.panzhihua.service_community.model.dos.SysConfDO;
-import org.apache.ibatis.annotations.Mapper;
-import org.apache.ibatis.annotations.Param;
 
 /**
  * DAO
@@ -16,17 +18,26 @@
  * @version 1.0
  * @since 1.0
  * @date 2021-06-09
- * */
+ */
 @Mapper
 public interface SysConfMapper extends BaseMapper<SysConfDO> {
 
-        /**
-         * 分页查询
-         * @param pageSysConfDTO
-         * @return
-         */
-        IPage<SysConfVO> findByPage(Page page, @Param("pageSysConfDTO")PageSysConfDTO pageSysConfDTO);
+    /**
+     * 分页查询
+     * 
+     * @param pageSysConfDTO
+     * @return
+     */
+    IPage<SysConfVO> findByPage(Page page, @Param("pageSysConfDTO") PageSysConfDTO pageSysConfDTO);
 
-        String getSysConfValue(@Param("key")String key,@Param("communityId") Long communityId);
+    String getSysConfValue(@Param("key") String key, @Param("communityId") Long communityId);
+
+    CommunityPublicityVO getData(@Param("communityId") String communityId);
+
+    int addDate(@Param("item") CommunityPublicityVO item);
+
+    int editDate(@Param("item") CommunityPublicityVO item);
+
+    int deleteData(@Param("communityId") String communityId);
 
 }

--
Gitblit v1.7.1