zhangtiansen
2022-09-13 0d71b7864aff87f37d84654127c96273608b1d1c
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComSanshuoExpertDao.java
@@ -3,9 +3,12 @@
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
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
@@ -25,6 +28,20 @@
     * @return 处理结果
     * */
    IPage<ComSanshuoExpertVO> expertPage(Page page, @Param("keyWord")String keyWord, @Param("range") Integer range, @Param("id")Long id);
    /**
     * 专家风采列表
     * */
    List<ExpertShowVO> expertShow();
    /**
     * 行业分中心分组专家
     * */
    List<ExpertShowVO> selectExpertIndustry();
    /**
     * 获取范围内的
     * */
}