| 12345678910111213141516171819 |
- package com.xjrsoft.module.student.service.impl;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import com.xjrsoft.module.student.entity.BaseStudentAssessmentStudentRelation;
- import com.xjrsoft.module.student.mapper.BaseStudentAssessmentStudentRelationMapper;
- import com.xjrsoft.module.student.service.IBaseStudentAssessmentStudentRelationService;
- import lombok.AllArgsConstructor;
- import org.springframework.stereotype.Service;
- /**
- * @title: 学生班级巡查考核-关联班级
- * @Author dzx
- * @Date: 2023-11-16
- * @Version 1.0
- */
- @Service
- @AllArgsConstructor
- public class BaseStudentAssessmentStudentRelationServiceImpl extends ServiceImpl<BaseStudentAssessmentStudentRelationMapper, BaseStudentAssessmentStudentRelation> implements IBaseStudentAssessmentStudentRelationService {
- }
|