From 08f1b1f1804a8bd833d42f257908d80e88387b55 Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期五, 14 三月 2025 11:27:47 +0800
Subject: [PATCH] 3.5增加登录验证、修改密码、人员列表调整
---
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