| 1234567891011121314151617181920212223242526272829303132 |
- package me.zhengjie.archives.service;
- import java.io.IOException;
- import java.util.List;
- import java.util.Map;
- import javax.servlet.http.HttpServletResponse;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import com.baomidou.mybatisplus.extension.service.IService;
- import me.zhengjie.archives.entity.ArchivesEntity;
- import me.zhengjie.archives.plus.AbstractService;
- import me.zhengjie.archives.vo.ArchivesVo;
- import me.zhengjie.archives.vo.CasePortraitVo;
- import me.zhengjie.archives.vo.PageResultVo;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author <a href="https://www.fengwenyi.com?code">Erwin Feng</a>
- * @since 2023-04-18
- */
- public interface ArchivesService extends AbstractService<ArchivesEntity> {
- public Map<String, Object> page(ArchivesVo req);
- public void mergeSubmit(CasePortraitVo archives) throws Exception;
- public void download(ArchivesVo req, HttpServletResponse response) throws IOException;
- }
|