package com.example.mapper; import com.example.entity.Course; import org.apache.ibatis.annotations.Select; import java.util.List; public interface CourseMapper { @Select("select * from course order by courseId desc") List selectAll(); }