xiaoyong931011
2022-03-16 8258ad8685784f421d62acfe6b9992c9935e3ebd
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;
}