1234567891011121314151617 |
- package com.xjrsoft.module.student.service;
- import com.github.yulichang.base.MPJBaseService;
- import com.xjrsoft.module.student.entity.BaseStudentDevelopment;
- import com.xjrsoft.module.student.vo.BaseStudentDevelopmentVo;
- /**
- * @title: 学生去向登记
- * @Author dzx
- * @Date: 2024-08-04
- * @Version 1.0
- */
- public interface IBaseStudentDevelopmentService extends MPJBaseService<BaseStudentDevelopment> {
- BaseStudentDevelopmentVo getInfoById(Long id);
- }
|