xuhy
22 小时以前 50d06fac81b2125292449a2eb29eba7e3f933b31
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
package com.jilongda.common.component;
 
/**
 * @author xiaochen
 * @ClassName AliOss
 * @Description
 * @date 2020-04-15 10:23
 */
public class AliOss {
    /**
     * 请填写您的AccessKeyId。LTAI5tPbJsVfBZZTPqPe8A2r
     */
    public static final String accessKeyId = "LTAI5tM6Ln3ukAeo9euZ8RUG";
    /**
     * 请填写您的AccessKeySecret。
     */
    public static final String accessKeySecret = "MGAnBeOKjjQNogFJEFsPVCdF57vsTw";
    /**
     * 请填写您的 endpoint。
     */
    public static final String endpoint = "oss-cn-shenzhen.aliyuncs.com";
    /**
     * 请填写您的 bucketname 。
     */
    public static final String bucketName = "yandu66";
    /**
     * host的格式为 bucketname.endpoint
     */
    public static final String host = "https://yandu66.oss-cn-shenzhen.aliyuncs.com";
 
    public static String dir = "eyes/";
 
}