web-文件接口

This commit is contained in:
2025-10-16 10:45:44 +08:00
parent 6858899c4c
commit 40ef609ea3
191 changed files with 2379 additions and 1593 deletions

View File

@@ -12,7 +12,7 @@ import org.xyzh.common.dto.study.TbCourseChapter;
/**
* @description 课程控制器
* @filename CourseController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -11,7 +11,7 @@ import java.util.Map;
/**
* @description 课程管理控制器
* @filename CourseManagementController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -12,7 +12,7 @@ import org.xyzh.common.dto.study.TbCourse;
/**
* @description 课程标签控制器
* @filename CourseTagController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -13,7 +13,7 @@ import java.util.Map;
/**
* @description 学习管理控制器
* @filename LearningManagementController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -12,7 +12,7 @@ import java.util.Map;
/**
* @description 学习计划控制器
* @filename LearningPlanController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -11,7 +11,7 @@ import org.xyzh.common.dto.study.TbLearningRecord;
/**
* @description 学习记录控制器
* @filename LearningRecordController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -11,7 +11,7 @@ import org.xyzh.common.dto.study.TbLearningStatistics;
/**
* @description 学习统计控制器
* @filename LearningStatisticsController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -14,7 +14,7 @@ import org.xyzh.common.dto.study.TbTaskResource;
/**
* @description 学习任务控制器
* @filename LearningTaskController.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 课程章节数据访问层
* @filename CourseChapterMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface CourseChapterMapper extends BaseMapper<TbCourseChapter> {
* @description 查询课程章节列表
* @param filter 过滤条件
* @return List<TbCourseChapter> 课程章节列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbCourseChapter> selectCourseChapters(TbCourseChapter filter);

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 课程数据访问层
* @filename CourseMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface CourseMapper extends BaseMapper<TbCourse> {
* @description 查询课程列表
* @param filter 过滤条件
* @return List<TbCourse> 课程列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbCourse> selectCourses(TbCourse filter);

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 课程标签关联数据访问层
* @filename CourseTagMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface CourseTagMapper extends BaseMapper<TbCourseTag> {
* @description 查询课程标签关联列表
* @param filter 过滤条件
* @return List<TbCourseTag> 课程标签关联列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbCourseTag> selectCourseTags(TbCourseTag filter);

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 学习记录数据访问层
* @filename LearningRecordMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface LearningRecordMapper extends BaseMapper<TbLearningRecord> {
* @description 查询学习记录列表
* @param filter 过滤条件
* @return List<TbLearningRecord> 学习记录列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbLearningRecord> selectLearningRecords(TbLearningRecord filter);

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 学习统计数据访问层
* @filename LearningStatisticsMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface LearningStatisticsMapper extends BaseMapper<TbLearningStatistic
* @description 查询学习统计列表
* @param filter 过滤条件
* @return List<TbLearningStatistics> 学习统计列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbLearningStatistics> selectLearningStatistics(TbLearningStatistics filter);

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 学习任务数据访问层
* @filename LearningTaskMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface LearningTaskMapper extends BaseMapper<TbLearningTask> {
* @description 查询学习任务列表
* @param filter 过滤条件
* @return List<TbLearningTask> 学习任务列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbLearningTask> selectLearningTasks(TbLearningTask filter);

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 任务课程关联数据访问层
* @filename TaskCourseMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface TaskCourseMapper extends BaseMapper<TbTaskCourse> {
* @description 查询任务课程关联列表
* @param filter 过滤条件
* @return List<TbTaskCourse> 任务课程关联列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbTaskCourse> selectTaskCourses(TbTaskCourse filter);

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 任务资源关联数据访问层
* @filename TaskResourceMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface TaskResourceMapper extends BaseMapper<TbTaskResource> {
* @description 查询任务资源关联列表
* @param filter 过滤条件
* @return List<TbTaskResource> 任务资源关联列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbTaskResource> selectTaskResources(TbTaskResource filter);

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* @description 任务用户数据访问层
* @filename TaskUserMapper.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/
@@ -20,7 +20,7 @@ public interface TaskUserMapper extends BaseMapper<TbTaskUser> {
* @description 查询任务用户列表
* @param filter 过滤条件
* @return List<TbTaskUser> 任务用户列表
* @author system
* @author yslg
* @since 2025-10-15
*/
List<TbTaskUser> selectTaskUsers(TbTaskUser filter);

View File

@@ -5,7 +5,7 @@ import org.xyzh.api.study.course.CourseService;
/**
* @description 课程服务接口
* @filename SCCourseService.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -5,7 +5,7 @@ import org.xyzh.api.study.tag.CourseTagService;
/**
* @description 课程标签服务接口
* @filename SCCourseTagService.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -5,7 +5,7 @@ import org.xyzh.api.study.record.LearningRecordService;
/**
* @description 学习记录服务接口
* @filename SCLearningRecordService.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -5,7 +5,7 @@ import org.xyzh.api.study.statistics.LearningStatisticsService;
/**
* @description 学习统计服务接口
* @filename SCLearningStatisticsService.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -5,7 +5,7 @@ import org.xyzh.api.study.task.LearningTaskService;
/**
* @description 学习任务服务接口
* @filename SCLearningTaskService.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -14,7 +14,7 @@ import org.xyzh.study.service.SCCourseService;
/**
* @description 课程服务实现类
* @filename SCCourseServiceImpl.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -12,7 +12,7 @@ import org.xyzh.study.mapper.CourseTagMapper;
/**
* @description 课程标签服务实现类
* @filename SCCourseTagServiceImpl.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -14,7 +14,7 @@ import org.xyzh.study.mapper.LearningRecordMapper;
/**
* @description 学习记录服务实现类
* @filename SCLearningRecordServiceImpl.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -14,7 +14,7 @@ import org.xyzh.api.study.statistics.LearningStatisticsService;
/**
* @description 学习统计服务实现类
* @filename SCLearningStatisticsServiceImpl.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/

View File

@@ -21,7 +21,7 @@ import org.xyzh.api.study.task.LearningTaskService;
/**
* @description 学习任务服务实现类
* @filename SCLearningTaskServiceImpl.java
* @author system
* @author yslg
* @copyright xyzh
* @since 2025-10-15
*/