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

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> {
}