IBaseStudentAssessmentInspectionService.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.xjrsoft.module.student.service;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.github.yulichang.base.MPJBaseService;
  4. import com.xjrsoft.module.student.dto.BaseStudentAssessmentInspectionMobilePageDto;
  5. import com.xjrsoft.module.student.dto.BaseStudentAssessmentInspectionPageDto;
  6. import com.xjrsoft.module.student.dto.CalssQuantitativeAssessmentPageDto;
  7. import com.xjrsoft.module.student.dto.QuantitativeAssessmentExcelDto;
  8. import com.xjrsoft.module.student.entity.BaseStudentAssessmentInspection;
  9. import com.xjrsoft.module.student.vo.*;
  10. import org.springframework.http.ResponseEntity;
  11. /**
  12. * @title: 学生班级巡查考核
  13. * @Author dzx
  14. * @Date: 2023-11-16
  15. * @Version 1.0
  16. */
  17. public interface IBaseStudentAssessmentInspectionService extends MPJBaseService<BaseStudentAssessmentInspection> {
  18. /**
  19. * 分页查询
  20. * @param dto
  21. * @return
  22. */
  23. Page<BaseStudentAssessmentInspectionPageVo> getPage(Page<BaseStudentAssessmentInspectionPageDto> page,BaseStudentAssessmentInspectionPageDto dto);
  24. /**
  25. * 数据详情
  26. * @return
  27. */
  28. BaseStudentAssessmentInspectionVo getInfo(Long id);
  29. /**
  30. * app分页查询
  31. * @param page
  32. * @param dto
  33. * @return
  34. */
  35. Page<BaseStudentAssessmentInspectionMobilePageVo> getMobilePage(Page<BaseStudentAssessmentInspectionMobilePageDto> page, BaseStudentAssessmentInspectionMobilePageDto dto);
  36. /**
  37. * app数据详情
  38. * @return
  39. */
  40. BaseStudentAssessmentInspectionMobileVo getMobileInfo(Long id);
  41. ResponseEntity<byte[]> getQuantitativeAssessmentExcelByte(QuantitativeAssessmentExcelDto dto);
  42. /**
  43. * 分页查询
  44. * @param dto
  45. * @return
  46. */
  47. Page<CalssQuantitativeAssessmentPageVo> getCalssQuantitativeAssessmentPage(Page<CalssQuantitativeAssessmentPageDto> page, CalssQuantitativeAssessmentPageDto dto);
  48. }