ArchivesService.java 924 B

1234567891011121314151617181920212223242526272829303132
  1. package me.zhengjie.archives.service;
  2. import java.io.IOException;
  3. import java.util.List;
  4. import java.util.Map;
  5. import javax.servlet.http.HttpServletResponse;
  6. import com.baomidou.mybatisplus.core.metadata.IPage;
  7. import com.baomidou.mybatisplus.extension.service.IService;
  8. import me.zhengjie.archives.entity.ArchivesEntity;
  9. import me.zhengjie.archives.plus.AbstractService;
  10. import me.zhengjie.archives.vo.ArchivesVo;
  11. import me.zhengjie.archives.vo.CasePortraitVo;
  12. import me.zhengjie.archives.vo.PageResultVo;
  13. /**
  14. * <p>
  15. * 服务类
  16. * </p>
  17. *
  18. * @author <a href="https://www.fengwenyi.com?code">Erwin Feng</a>
  19. * @since 2023-04-18
  20. */
  21. public interface ArchivesService extends AbstractService<ArchivesEntity> {
  22. public Map<String, Object> page(ArchivesVo req);
  23. public void mergeSubmit(CasePortraitVo archives) throws Exception;
  24. public void download(ArchivesVo req, HttpServletResponse response) throws IOException;
  25. }