吉安感知网项目-后端
xiebin
2026-01-06 d207a86cdf1ab52ef8cb7cd83bad8fceab8038cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.sxkj.resource.enums;
 
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;
    }
}