package com.mindskip.xzs.service;
|
|
|
import com.mindskip.xzs.domain.vo.VideoStudentDto;
|
import com.mindskip.xzs.domain.vo.VideoStudentListVO;
|
import com.mindskip.xzs.domain.vo.VideoStudentVO;
|
|
import java.util.List;
|
|
public interface IVideoService{
|
void save(VideoStudentDto videoStudentDto);
|
|
void clear();
|
|
VideoStudentVO showButton(Integer id);
|
|
List<VideoStudentListVO> getStudentVideoList();
|
}
|