CloudStorageProperties.java 623 B

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