| package com.panzhihua.grid_app.config; | 
|   | 
| import lombok.Data; | 
| import org.springframework.boot.context.properties.ConfigurationProperties; | 
|   | 
| /** | 
|  * program 攀枝花智慧社区项目 description minio存储信息配置 | 
|  * | 
|  * @author manailin Date 2021-08-19 15:30 | 
|  **/ | 
| @Data | 
| @ConfigurationProperties(prefix = "minio") | 
| public class MinioConfig { | 
|   | 
|     private String host; | 
|   | 
|     private String accessKey; | 
|   | 
|     private String secretKey; | 
|   | 
|     private String url; | 
|   | 
|     private String bucket; | 
|   | 
|     private String aliasName; | 
|   | 
|     private String aliasPCName; | 
| } |