| 12345678910111213141516171819 |
- package com.xjrsoft.module.xycxedu.service.impl;
- import com.github.yulichang.base.MPJBaseServiceImpl;
- import com.xjrsoft.module.xycxedu.entity.ExamPlan;
- import com.xjrsoft.module.xycxedu.mapper.ExamPlanMapper;
- import com.xjrsoft.module.xycxedu.service.IExamPlanService;
- import lombok.AllArgsConstructor;
- import org.springframework.stereotype.Service;
- /**
- * @title: 考试计划维护
- * @Author dzx
- * @Date: 2024-07-18
- * @Version 1.0
- */
- @Service
- @AllArgsConstructor
- public class ExamPlanServiceImpl extends MPJBaseServiceImpl<ExamPlanMapper, ExamPlan> implements IExamPlanService {
- }
|