IBaseStudentAssessmentInspectionService.java 2.3 KB

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