|
@@ -5,6 +5,7 @@ import com.miaxis.teachingVideo.domain.TeachingVideoInfo;
|
|
import com.miaxis.teachingVideo.domain.TeachingVideoTypeInfo;
|
|
import com.miaxis.teachingVideo.domain.TeachingVideoTypeInfo;
|
|
import com.miaxis.teachingVideo.vo.TeachingVideoInfoAppletVo;
|
|
import com.miaxis.teachingVideo.vo.TeachingVideoInfoAppletVo;
|
|
import com.miaxis.teachingVideo.vo.TeachingVideoInfoVo;
|
|
import com.miaxis.teachingVideo.vo.TeachingVideoInfoVo;
|
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
@@ -37,4 +38,11 @@ public interface TeachingVideoInfoMapper extends BaseMapper<TeachingVideoInfo> {
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
List<TeachingVideoInfoAppletVo> getTeachingVideoDetailsByTypeIds(String pid);
|
|
List<TeachingVideoInfoAppletVo> getTeachingVideoDetailsByTypeIds(String pid);
|
|
|
|
+
|
|
|
|
+ /***
|
|
|
|
+ * 根据关键字搜索教学视频
|
|
|
|
+ * @param keyword
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ List<TeachingVideoInfoAppletVo> searchTeachingVideoInfoByKeyword(@Param("keyword") String keyword);
|
|
}
|
|
}
|