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/ComSanshuoExpertDao.java | 50 +++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 49 insertions(+), 1 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 ecfa9bd..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 @@ -2,9 +2,15 @@ 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.sanshuo.ComSanshuoExpertDTO; +import com.panzhihua.common.model.dtos.community.sanshuo.IndexDateDTO; import com.panzhihua.common.model.vos.sanshuo.ComSanshuoExpertVO; +import com.panzhihua.common.model.vos.sanshuo.ExpertShowVO; import com.panzhihua.service_community.entity.ComSanshuoExpert; +import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; + +import java.util.List; /** * @author Frozen @@ -12,6 +18,7 @@ * @createDate 2022-09-06 14:17:37 * @Entity generator.entity.ComSanshuoExpert */ +@Mapper public interface ComSanshuoExpertDao extends BaseMapper<ComSanshuoExpert> { /** @@ -22,7 +29,48 @@ * @param id 社区或街道或业务中心id * @return 处理结果 * */ - IPage<ComSanshuoExpertVO> expertPage(Page page, @Param("keyWord")String keyWord, @Param("range") Integer range, @Param("id")Long id); + 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(String appId); + + /** + * 行业分中心分组专家 + * */ + List<ExpertShowVO> selectExpertIndustry(); + + + /** + * 街道分组专家 + * */ + List<ExpertShowVO> selectExpertStreet(); + + /** + * 社区分组专家 + * */ + List<ExpertShowVO> selectExpertCommunity(String appId); + + + /** + * 小程序获取专家列表 + * */ + List<ComSanshuoExpert> selectExpertList(); + + /** + * 是否重名,重复手机号,重复账号 + * */ + List<ComSanshuoExpert> selectExpertByNameOrPhoneOrAccount(@Param("dto") ComSanshuoExpertDTO comSanshuoExpertDTO); + + /** + * 获取当前级别的专家数量 + * */ + Integer selectExpertCount(@Param("dto") IndexDateDTO indexDataDTO); + + 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