Helius
2020-10-14 384cdef5a4e517bb4686b4e1e454f9fc3c914c14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.xcong.excoin.modules.helpCenter.dto;
 
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
import lombok.Data;
 
@Data
@Configuration
@ConfigurationProperties(prefix = "aliyun.oss")
public class AliOssProperties {
    private String endPoint;
 
    private String bucketName;
 
    private String accessKeyId;
 
    private String accessKeySecret;
}