shenyijian
2023-11-16 bf4990ffb53e2a0e7b2ec0c7a8a054bdf8a57db5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.dji.sample.media.model;
 
import lombok.Getter;
 
/**
 * @author sean
 * @version 1.3
 * @date 2022/11/23
 */
@Getter
public enum MediaMethodEnum {
 
    UPLOAD_FLIGHT_TASK_MEDIA_PRIORITIZE("upload_flighttask_media_prioritize");
 
    private String method;
 
    MediaMethodEnum(String method) {
        this.method = method;
    }
}