21 lines
591 B
Java
21 lines
591 B
Java
package com.guo.learningprogresstracker.mapper;
|
|
|
|
import com.guo.learningprogresstracker.entity.StudyReportFragmentsEntity;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* @author guo
|
|
* @description 针对表【study_report_fragments(记录学习过程中的学习内容报告残片)】的数据库操作Mapper
|
|
* @createDate 2024-06-09 15:28:48
|
|
* @Entity com.guo.learningprogresstracker.entity.StudyReportFragmentsEntity
|
|
*/
|
|
@Mapper
|
|
public interface StudyReportFragmentsMapper extends BaseMapper<StudyReportFragmentsEntity> {
|
|
|
|
}
|
|
|
|
|
|
|
|
|