IPbVXssfdetailService.java 952 B

123456789101112131415161718192021222324252627282930313233343536
  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.PbVXssfdetailExcelDto;
  5. import com.xjrsoft.module.student.dto.PbVXssfdetailPageDto;
  6. import com.xjrsoft.module.student.entity.PbVXssfdetail;
  7. import com.xjrsoft.module.student.vo.PbVXssfdetailExcelVo;
  8. import com.xjrsoft.module.student.vo.PbVXssfdetailPageVo;
  9. import java.util.List;
  10. /**
  11. * @title:
  12. * @Author dzx
  13. * @Date: 2024-03-13
  14. * @Version 1.0
  15. */
  16. public interface IPbVXssfdetailService extends MPJBaseService<PbVXssfdetail> {
  17. /**
  18. * 分页查询
  19. * @param page
  20. * @param dto
  21. * @return
  22. */
  23. Page<PbVXssfdetailPageVo> getPage(Page<PbVXssfdetailPageVo> page, PbVXssfdetailPageDto dto);
  24. /**
  25. * 分页查询
  26. * @param dto
  27. * @return
  28. */
  29. List<PbVXssfdetailExcelVo> getList(PbVXssfdetailExcelDto dto);
  30. }