b67cf238c2
- 迁移:study_expectations.session_num 改为 varchar 对齐会话编码
- StudyExpectationsEntity / Mapper / Service:每会话一条预期,重复创建覆盖
- StudySessionController:PUT/GET /{sessionNum}/expectation
- 移除空的 studySessionList 占位方法
10 lines
319 B
Java
10 lines
319 B
Java
package com.guo.learningprogresstracker.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.guo.learningprogresstracker.entity.StudyExpectationsEntity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
@Mapper
|
|
public interface StudyExpectationsMapper extends BaseMapper<StudyExpectationsEntity> {
|
|
}
|