IExamPlanService.java 308 B

1234567891011121314
  1. package com.xjrsoft.module.xycxedu.service;
  2. import com.github.yulichang.base.MPJBaseService;
  3. import com.xjrsoft.module.xycxedu.entity.ExamPlan;
  4. /**
  5. * @title: 考试计划维护
  6. * @Author dzx
  7. * @Date: 2024-07-18
  8. * @Version 1.0
  9. */
  10. public interface IExamPlanService extends MPJBaseService<ExamPlan> {
  11. }