CourseWareMapper.java 440 B

123456789101112131415161718
  1. package cn.seecoder.courselearning.mapperservice.course;
  2. import cn.seecoder.courselearning.po.course.CourseWare;
  3. import java.util.List;
  4. public interface CourseWareMapper {
  5. int deleteByPrimaryKey(Integer id);
  6. int insert(CourseWare record);
  7. CourseWare selectByPrimaryKey(Integer id);
  8. List<CourseWare> selectAll();
  9. int updateByPrimaryKey(CourseWare record);
  10. List<CourseWare> selectByCourseId(Integer courseId);
  11. }