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 getAll(); void clear(); Integer insert (VideoStudent record); List getStudentList(); }