package com.mindskip.xzs.repository;
|
|
import com.mindskip.xzs.domain.VideoStudent;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
@Mapper
|
public interface MyVideoMapper {
|
|
List<VideoStudent> getAll();
|
|
void clear();
|
|
Integer insert (VideoStudent record);
|
|
List<String> getStudentList();
|
}
|