BaseStudentAssessmentStudentRelationServiceImpl.java 808 B

12345678910111213141516171819
  1. package com.xjrsoft.module.student.service.impl;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import com.xjrsoft.module.student.entity.BaseStudentAssessmentStudentRelation;
  4. import com.xjrsoft.module.student.mapper.BaseStudentAssessmentStudentRelationMapper;
  5. import com.xjrsoft.module.student.service.IBaseStudentAssessmentStudentRelationService;
  6. import lombok.AllArgsConstructor;
  7. import org.springframework.stereotype.Service;
  8. /**
  9. * @title: 学生班级巡查考核-关联班级
  10. * @Author dzx
  11. * @Date: 2023-11-16
  12. * @Version 1.0
  13. */
  14. @Service
  15. @AllArgsConstructor
  16. public class BaseStudentAssessmentStudentRelationServiceImpl extends ServiceImpl<BaseStudentAssessmentStudentRelationMapper, BaseStudentAssessmentStudentRelation> implements IBaseStudentAssessmentStudentRelationService {
  17. }