| 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;  | 
| }  | 
|   |