| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- 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.AddBaseStudentUserDto;
- import com.xjrsoft.module.student.dto.BaseStudentUserPageDto;
- import com.xjrsoft.module.student.dto.UpdateBaseStudentUserDto;
- import com.xjrsoft.module.student.entity.BaseStudentUser;
- import com.xjrsoft.module.student.vo.BaseStudentClassVo;
- import com.xjrsoft.module.student.vo.BaseStudentUserPageVo;
- import com.xjrsoft.module.student.vo.PersonalPortraitPersonalInfoVo;
- import org.springframework.web.multipart.MultipartFile;
- import java.io.IOException;
- import java.text.ParseException;
- import java.util.List;
- import java.util.Map;
- public interface IStudentManagerService extends MPJBaseService<BaseStudentUser> {
- /**
- * 新增
- *
- * @param baseStudentUser
- * @return
- */
- Long add(AddBaseStudentUserDto baseStudentUser);
- /**
- * 更新
- *
- * @param baseStudentUser
- * @return
- */
- Boolean update(UpdateBaseStudentUserDto baseStudentUser);
- /**
- * 删除
- *
- * @param ids
- * @return
- */
- Boolean delete(List<Long> ids);
- /**
- * 获取学生班级信息
- *
- * @param userId
- * @return
- */
- BaseStudentClassVo getStudentClass(Long userId);
- /**
- * 个人财务画像,获取学生个人信息
- * @param userId
- * @return
- */
- PersonalPortraitPersonalInfoVo getPersonalInfo(Long userId);
- Boolean importStudentData(List<Map<Integer, Object>> excelDataList) throws ParseException;
- Page<BaseStudentUserPageVo> getStudentPage(Page<BaseStudentUserPageVo> page, BaseStudentUserPageDto dto);
- Boolean uploadImage(Long userId, MultipartFile file) throws IOException;
- }
|