098178bc3ac01804a9ef6ba7ff40661210207f2e.svn-base 750 B

123456789101112131415161718192021222324252627282930
  1. package org.jeecg.common.api.dto;
  2. import lombok.Data;
  3. import javax.servlet.http.HttpServletResponse;
  4. import java.io.Serializable;
  5. /**
  6. * 文件下载
  7. * cloud api 用到的接口传输对象
  8. */
  9. @Data
  10. public class FileDownDTO implements Serializable {
  11. private static final long serialVersionUID = 6749126258686446019L;
  12. private String filePath;
  13. private String uploadpath;
  14. private String uploadType;
  15. private HttpServletResponse response;
  16. public FileDownDTO(){}
  17. public FileDownDTO(String filePath, String uploadpath, String uploadType,HttpServletResponse response){
  18. this.filePath = filePath;
  19. this.uploadpath = uploadpath;
  20. this.uploadType = uploadType;
  21. this.response = response;
  22. }
  23. }