CourseWareMapper.java 391 B

12345678910111213141516
  1. package cn.seecoder.courselearning.mapperservice;
  2. import cn.seecoder.courselearning.po.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> selectByCourseId(Integer courseId);
  9. int updateByPrimaryKey(CourseWare record);
  10. }