admin
2022-03-29 fac5d01bfcddfc8edef0a5fd3d401b1fe383fe16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package org.yeshi.utils.tencentcloud.entity;
 
/**
 * 腾讯云COS初始化参数
 *
 * @author hexiaohui
 */
public class COSInitParams {
    private long appId;
    private String secretId;
    private String secretKey;
    // 设置要操作的bucket
    private String bucketName;
    private String region;
    //访问域名
    private String accessHost;
 
    public long getAppId() {
        return appId;
    }
 
    public void setAppId(long appId) {
        this.appId = appId;
    }
 
    public String getSecretId() {
        return secretId;
    }
 
    public void setSecretId(String secretId) {
        this.secretId = secretId;
    }
 
    public String getSecretKey() {
        return secretKey;
    }
 
    public void setSecretKey(String secretKey) {
        this.secretKey = secretKey;
    }
 
    public String getBucketName() {
        return bucketName;
    }
 
    public void setBucketName(String bucketName) {
        this.bucketName = bucketName;
    }
 
    public String getRegion() {
        return region;
    }
 
    public void setRegion(String region) {
        this.region = region;
    }
 
    public String getAccessHost() {
        return accessHost;
    }
 
    public void setAccessHost(String accessHost) {
        this.accessHost = accessHost;
    }
}