ProjectProgressService.java 690 B

12345678910111213141516171819202122232425262728
  1. package com.jiayue.biz.service;
  2. import com.jiayue.biz.domain.ProjectProgress;
  3. import org.springframework.web.multipart.MultipartFile;
  4. import javax.servlet.http.HttpServletResponse;
  5. import java.util.List;
  6. public interface ProjectProgressService {
  7. //查询项目进展
  8. List<ProjectProgress> selectProProjectInfo();
  9. /**
  10. * 保存附件
  11. * @param multipartFile 文件
  12. * @param id 文件夹名
  13. */
  14. void saveAttachment(MultipartFile multipartFile, String id);
  15. //项目进展解析
  16. void projectProgressParse(MultipartFile multipartFile, String eqId);
  17. //下载模板
  18. void downloadProjectProgress(HttpServletResponse response, String id);
  19. }