package com.newfiber.api.pc.service; import com.baomidou.mybatisplus.service.IService; import com.github.pagehelper.PageInfo; import com.newfiber.api.pc.model.River.ProblemLongTermExp; import java.util.List; /** * problemLongTermExp 业务层 * * @author luzhan * @date 2021-10-26 */ public interface ProblemLongTermExpService extends IService<ProblemLongTermExp> { /** * problemLongTermExp 分页列表 * @param searchStr * @param pageNo * @param pageSize * @return */ PageInfo<ProblemLongTermExp> listForPage(String searchStr, Integer pageNo, Integer pageSize); /** * 查询某个分类下的经验库 * @param totalClass * @return */ List<ProblemLongTermExp> listAll(Long totalClass); /** * 通过id查询经验库 * @param list * @return */ List<ProblemLongTermExp> selectByIds(List<Long> list); }