Blame view

VodSubjectTreeMappingService.java 697 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
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);
}