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