记录ios不能看得视频;免费课程按分类查询
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package com.peanut.modules.common.dao;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseMapper;
|
||||
import com.peanut.modules.common.entity.CourseErrorLog;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface CourseErrorLogDao extends MPJBaseMapper<CourseErrorLog> {
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.peanut.modules.common.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@TableName("course_error_log")
|
||||
public class CourseErrorLog {
|
||||
@TableId
|
||||
private Integer id;
|
||||
private Integer courseId;
|
||||
private Integer catalogueId;
|
||||
private Integer chapterId;
|
||||
private Integer videoId;
|
||||
private Integer sort;
|
||||
private Date createTime;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.peanut.modules.common.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.peanut.modules.common.entity.CourseErrorLog;
|
||||
|
||||
public interface CourseErrorLogService extends IService<CourseErrorLog> {
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.peanut.modules.common.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.peanut.modules.common.dao.CourseErrorLogDao;
|
||||
import com.peanut.modules.common.entity.CourseErrorLog;
|
||||
import com.peanut.modules.common.service.CourseErrorLogService;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Slf4j
|
||||
@Service("commonCourseErrorLogService")
|
||||
public class CourseErrorLogServiceImpl extends ServiceImpl<CourseErrorLogDao, CourseErrorLog> implements CourseErrorLogService {
|
||||
}
|
||||
Reference in New Issue
Block a user