Blame view

CourseContentService.java 712 Bytes
涂亚平 committed
1 2 3
package com.subsidy.service;

import com.baomidou.mybatisplus.extension.service.IService;
邓敏 committed
4 5
import com.subsidy.dto.content.GetContendVodsDTO;
import com.subsidy.dto.vod.ChangeOrdersDTO;
涂亚平 committed
6
import com.subsidy.model.CourseContentDO;
邓敏 committed
7
import com.subsidy.vo.vod.GetContendVodsVO;
涂亚平 committed
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

import java.util.List;

/**
 * <p>
 * 课程目录表 服务类
 * </p>
 *
 * @author DengMin
 * @since 2021-10-11
 */
public interface CourseContentService extends IService<CourseContentDO> {

   List<CourseContentDO> getContents(CourseContentDO courseContentDO);

涂亚平 committed
23
   String deleteContent(CourseContentDO courseContentDO);
涂亚平 committed
24

涂亚平 committed
25 26 27
   String addContent(CourseContentDO courseContentDO);

   String updateContent(CourseContentDO courseContentDO);
涂亚平 committed
28
}