Blame view

VodDictMapper.java 684 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
package com.subsidy.mapper;

import com.baomidou.mybatisplus.core.metadata.IPage;
import com.subsidy.model.VodDictDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.subsidy.vo.vod.GetContendVodsVO;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
 * <p>
 * 视频表 Mapper 接口
 * </p>
 *
 * @author DengMin
 * @since 2021-10-11
 */
@Repository
public interface VodDictMapper extends BaseMapper<VodDictDO> {

    /**
     * 查看某个目录下的视频
     * @param page
     * @param vodName
     * @param contentId
     * @return
     */
    IPage<GetContendVodsVO> getContendVods(IPage page,String vodName,Long contentId);
}