Helius
2020-10-13 a9bcbe65ec452b42e730b2e4e23bc54473f8039d
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;
}