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; /** *

* Mapper 接口 *

* * @author * @since 2023-03-29 */ @Repository public interface EducationResourceMapper extends BaseMapper { List selectEducationResourceList(@Param("queryWord") String queryWord, @Param("industryId") String industryId); }