IBaseStudentAssessmentProjectService.java 365 B

1234567891011121314
  1. package com.xjrsoft.module.student.service;
  2. import com.github.yulichang.base.MPJBaseService;
  3. import com.xjrsoft.module.student.entity.BaseStudentAssessmentProject;
  4. /**
  5. * @title: 学生考核项目
  6. * @Author fanxp
  7. * @Date: 2023-11-14
  8. * @Version 1.0
  9. */
  10. public interface IBaseStudentAssessmentProjectService extends MPJBaseService<BaseStudentAssessmentProject> {
  11. }