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;
| }
| }
|
|