refactor: 移除 StudyExpectations 相关代码

This commit is contained in:
2026-05-27 21:23:31 +08:00
parent 4b26ed46ec
commit a932bf52ca
5 changed files with 0 additions and 116 deletions
@@ -1,39 +0,0 @@
package com.guo.learningprogresstracker.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.time.LocalDateTime;
import lombok.Data;
/**
* 存储每次学习开始前的预期
* @TableName study_expectations
*/
@TableName(value ="study_expectations")
@Data
public class StudyExpectationsEntity extends BaseEntity implements Serializable {
/**
*
*/
@TableId(value = "expectation_id", type = IdType.AUTO)
private Integer expectationId;
/**
*
*/
@TableField(value = "session_id")
private Integer sessionId;
/**
* 学习预期的详细描述
*/
@TableField(value = "description")
private String description;
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}
@@ -1,20 +0,0 @@
package com.guo.learningprogresstracker.mapper;
import com.guo.learningprogresstracker.entity.StudyExpectationsEntity;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
/**
* @author guo
* @description 针对表【study_expectations(存储每次学习开始前的预期)】的数据库操作Mapper
* @createDate 2024-06-09 15:28:48
* @Entity com.guo.learningprogresstracker.entity.StudyExpectationsEntity
*/
@Mapper
public interface StudyExpectationsMapper extends BaseMapper<StudyExpectationsEntity> {
}
@@ -1,13 +0,0 @@
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> {
}
@@ -1,22 +0,0 @@
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{
}