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

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