CloudStorageProperties.java 542 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.ruoyi.oss.properties;
  2. import lombok.Data;
  3. /**
  4. * OSS云存储 配置属性
  5. *
  6. * @author Lion Li
  7. */
  8. @Data
  9. public class CloudStorageProperties {
  10. /**
  11. * 域名
  12. */
  13. private String endpoint;
  14. /**
  15. * 前缀
  16. */
  17. private String prefix;
  18. /**
  19. * ACCESS_KEY
  20. */
  21. private String accessKey;
  22. /**
  23. * SECRET_KEY
  24. */
  25. private String secretKey;
  26. /**
  27. * 存储空间名
  28. */
  29. private String bucketName;
  30. /**
  31. * 存储区域
  32. */
  33. private String region;
  34. /**
  35. * 是否https(Y=是,N=否)
  36. */
  37. private String isHttps;
  38. }