无人机项目后端代码
sean.zhou
2022-09-23 a3360878835e4606c968441e432b0c3d4bd921ae
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
package com.dji.sample.component.oss.model.enums;
 
/**
 * @author sean
 * @version 1.0
 * @date 2022/5/30
 */
public enum OssTypeEnum {
 
    ALIYUN("ali"),
 
    AWS("aws"),
 
    MINIO("minio");
 
    private String type;
 
    OssTypeEnum(String type) {
        this.type = type;
    }
 
    public String getType() {
        return type;
    }
}