123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package com.ruoyi.oss.properties;
- import lombok.Data;
- /**
- * OSS云存储 配置属性
- *
- * @author Lion Li
- */
- @Data
- public class CloudStorageProperties {
- /**
- * 域名
- */
- private String endpoint;
- /**
- * 前缀
- */
- private String prefix;
- /**
- * ACCESS_KEY
- */
- private String accessKey;
- /**
- * SECRET_KEY
- */
- private String secretKey;
- /**
- * 存储空间名
- */
- private String bucketName;
- /**
- * 存储区域
- */
- private String region;
- /**
- * 是否https(Y=是,N=否)
- */
- private String isHttps;
- }
|