cn.cloudscope.oss.config.properties.CosProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oss-spring-boot-starter Show documentation
Show all versions of oss-spring-boot-starter Show documentation
A Spring Boot Starter for OSS storage
package cn.cloudscope.oss.config.properties;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* 配置用户信息,可添加特有属性
*
* @author wangkp
* @date 2022/1/24 14:25
*
*
* www.cloudscope.cn
* Copyright (c) 2019. All Rights Reserved.
*
*/
@EqualsAndHashCode(callSuper = true)
@Data
@ConfigurationProperties(prefix = "oss.storage.cos")
public class CosProperties extends CommonProperties {
private String region;
}