cloudroam
2025-06-11 fb514e661e644bc40dba3d2413a64ff5e86bf6be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.mzl.flower.config.oss;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
@Data
@Component
@ConfigurationProperties(prefix = "tos-oss")
public class TosOssProperties {
 
    private String endpoint;
    private String region;
    private String keyid;
    private String keysecret;
    private String bucketname;
 
}