26 lines
661 B
Java
26 lines
661 B
Java
|
|
package com.rzyc.mapper;
|
||
|
|
|
||
|
|
import com.rzyc.bean.pojo.vo.EducationResourceVo;
|
||
|
|
import com.rzyc.model.EducationResource;
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
import org.springframework.stereotype.Repository;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* <p>
|
||
|
|
* Mapper 接口
|
||
|
|
* </p>
|
||
|
|
*
|
||
|
|
* @author
|
||
|
|
* @since 2023-03-29
|
||
|
|
*/
|
||
|
|
@Repository
|
||
|
|
public interface EducationResourceMapper extends BaseMapper<EducationResource> {
|
||
|
|
|
||
|
|
List<EducationResourceVo> selectEducationResourceList(@Param("queryWord") String queryWord,
|
||
|
|
@Param("industryId") String industryId);
|
||
|
|
|
||
|
|
}
|