23 lines
728 B
Java
23 lines
728 B
Java
package com.guo.learningprogresstracker.service.impl;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.guo.learningprogresstracker.entity.StudyExpectationsEntity;
|
|
import com.guo.learningprogresstracker.service.StudyExpectationsService;
|
|
import com.guo.learningprogresstracker.mapper.StudyExpectationsMapper;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* @author guo
|
|
* @description 针对表【study_expectations(存储每次学习开始前的预期)】的数据库操作Service实现
|
|
* @createDate 2024-06-09 15:28:48
|
|
*/
|
|
@Service
|
|
public class StudyExpectationsServiceImpl extends ServiceImpl<StudyExpectationsMapper, StudyExpectationsEntity>
|
|
implements StudyExpectationsService{
|
|
|
|
}
|
|
|
|
|
|
|
|
|