1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| package com.ruoyi.oss.properties;
|
| import lombok.Data;
|
| /**
| * OSS对象存储 配置属性
| *
| * @author Lion Li
| */
| @Data
| public class OssProperties {
|
| /**
| * 域名
| */
| 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;
|
| }
|
|