Files
lpt-be/src/main/java/com/guo/learningprogresstracker/service/StudyReportFragmentsService.java
T
2024-07-09 22:45:29 +08:00

14 lines
463 B
Java

package com.guo.learningprogresstracker.service;
import com.guo.learningprogresstracker.entity.StudyReportFragmentsEntity;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* @author guo
* @description 针对表【study_report_fragments(记录学习过程中的学习内容报告残片)】的数据库操作Service
* @createDate 2024-06-09 15:28:48
*/
public interface StudyReportFragmentsService extends IService<StudyReportFragmentsEntity> {
}