| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- package com.xjrsoft.module.student.service;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.github.yulichang.base.MPJBaseService;
- import com.xjrsoft.module.student.dto.BaseStudentInfoDetailDto;
- import com.xjrsoft.module.student.dto.BaseStudentInfoPageDto;
- import com.xjrsoft.module.student.dto.BaseStudentSimpleInfoDto;
- import com.xjrsoft.module.student.dto.UpdateBaseStudentInfoDto;
- import com.xjrsoft.module.student.entity.BaseStudentSchoolRoll;
- import com.xjrsoft.module.student.vo.*;
- import java.util.List;
- /**
- * @title: 奖学金申请
- * @Author dzx
- * @Date: 2023-11-23
- * @Version 1.0
- */
- public interface IBaseStudentSchoolRollService extends MPJBaseService<BaseStudentSchoolRoll> {
- Page<BaseStudentInfoPageVo> getMobilePage(Page<BaseStudentInfoPageVo> page, BaseStudentInfoPageDto dto);
- /**
- * 移动端查询学生信息列表
- *
- * @param dto
- * @return
- */
- Boolean updateInfo(UpdateBaseStudentInfoDto dto);
- /**
- * 移动端查询学生详情信息
- *
- * @return
- */
- BaseStudentInfoDetailVo getInfoById(BaseStudentInfoDetailDto dto);
- /**
- * 统计学生信息
- *
- * @param dto
- * @return
- */
- BaseStudentInfoPageDataVo getMobilePageStatistics(BaseStudentInfoPageDto dto);
- MobileClassStatisticsVo getMobileClassStatistics(BaseStudentInfoPageDto dto);
- Boolean updateStudentClass(Long classId, Long userId);
- Boolean updateStudentClass(Long classId, Long majorSetId, Long userId);
- Boolean updateStudentClassGradeMajorStduyStatus(Long classId, Long gradeId, Long majorSetId, String stduyStatus, Long userId);
- List<BaseStudentSompleInfoVo> getInfosByParam(BaseStudentSimpleInfoDto dto);
- String getClassNameByUserId(Long userId);
- Long getClassIdByUserId(Long userId);
- Boolean activateStudent(Long userId);
- Boolean disableStudent(Long userId);
- Boolean disableStudent(Long userId, Long modifyUserId);
- }
|