- package cn.seecoder.courselearning.mapperservice;
- import cn.seecoder.courselearning.po.CourseWare;
- import java.util.List;
- public interface CourseWareMapper {
- int deleteByPrimaryKey(Integer id);
- int insert(CourseWare record);
- CourseWare selectByPrimaryKey(Integer id);
- List<CourseWare> selectByCourseId(Integer courseId);
- int updateByPrimaryKey(CourseWare record);
- }
|