苍穹外卖--新增菜品-文件上传功能实现
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package com.sky.properties;
|
||||
|
||||
import lombok.Data;
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
* ClassName: AliOSSProperties
|
||||
* Package: com.inmind.utils
|
||||
* Description:
|
||||
*
|
||||
* @Author xuxin
|
||||
* @Create 5/14 15:10
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
@Component
|
||||
@ConfigurationProperties(prefix = "sky.alioss")
|
||||
public class InmindAliOSSProperties {
|
||||
private String endpoint;
|
||||
private String bucketName;
|
||||
private String region;
|
||||
}
|
||||
Reference in New Issue
Block a user