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/ComSanshuoExpertDao.java | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComSanshuoExpertDao.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComSanshuoExpertDao.java
index e733475..d2c70b5 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComSanshuoExpertDao.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComSanshuoExpertDao.java
@@ -29,12 +29,12 @@
* @param id 社区或街道或业务中心id
* @return 处理结果
* */
- IPage<ComSanshuoExpertVO> expertPage(Page page, @Param("keyWord")String keyWord, @Param("range") Integer range, @Param("id")Long id,@Param("level")Integer level);
+ IPage<ComSanshuoExpertVO> expertPage(Page page, @Param("keyWord")String keyWord, @Param("range") Integer range, @Param("id")Long id,@Param("level")Integer level,@Param("appId")String appId);
/**
* 专家风采列表
* */
- List<ExpertShowVO> expertShow();
+ List<ExpertShowVO> expertShow(String appId);
/**
* 行业分中心分组专家
@@ -50,7 +50,7 @@
/**
* 社区分组专家
* */
- List<ExpertShowVO> selectExpertCommunity();
+ List<ExpertShowVO> selectExpertCommunity(String appId);
/**
@@ -68,7 +68,9 @@
* */
Integer selectExpertCount(@Param("dto") IndexDateDTO indexDataDTO);
- List<ExpertShowVO> selectExpertVoList(Integer level);
+ Integer selectExpertVoList();
+
+ IPage<ComSanshuoExpertVO> expertList(Page page, @Param("level") Integer level, @Param("id") Long id,@Param("appId")String appId,@Param("keyWord")String keyWord);
}
--
Gitblit v1.7.1