VodSubjectTreeMappingService.java 697 Bytes
package com.meishu.service;

import com.baomidou.mybatisplus.core.metadata.IPage;
import com.meishu.dto.subject.BatchStatusOprDTO;
import com.meishu.dto.subject.GetAllVodsStatusDTO;
import com.meishu.model.VodSubjectTreeMappingDO;
import com.baomidou.mybatisplus.extension.service.IService;
import com.meishu.vo.subject.GetAllNoAuthenVodsVO;

/**
 * <p>
 * 视频知识点映射表 服务类
 * </p>
 *
 * @author Tuyp
 * @since 2021-04-27
 */
public interface VodSubjectTreeMappingService extends IService<VodSubjectTreeMappingDO> {

    IPage<GetAllNoAuthenVodsVO> getAllNoAuthenVods(GetAllVodsStatusDTO getAllNoAuthenVodsDTO);

    String batchStatusOpr(BatchStatusOprDTO batchStatusOprDTO);
}