IBaseStudentDevelopmentService.java 460 B

1234567891011121314151617
  1. package com.xjrsoft.module.student.service;
  2. import com.github.yulichang.base.MPJBaseService;
  3. import com.xjrsoft.module.student.entity.BaseStudentDevelopment;
  4. import com.xjrsoft.module.student.vo.BaseStudentDevelopmentVo;
  5. /**
  6. * @title: 学生去向登记
  7. * @Author dzx
  8. * @Date: 2024-08-04
  9. * @Version 1.0
  10. */
  11. public interface IBaseStudentDevelopmentService extends MPJBaseService<BaseStudentDevelopment> {
  12. BaseStudentDevelopmentVo getInfoById(Long id);
  13. }