14 lines
438 B
Java
14 lines
438 B
Java
package com.guo.learningprogresstracker.service;
|
|
|
|
import com.guo.learningprogresstracker.entity.StudyExpectationsEntity;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
/**
|
|
* @author guo
|
|
* @description 针对表【study_expectations(存储每次学习开始前的预期)】的数据库操作Service
|
|
* @createDate 2024-06-09 15:28:48
|
|
*/
|
|
public interface StudyExpectationsService extends IService<StudyExpectationsEntity> {
|
|
|
|
}
|