吉安感知网项目-后端
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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package org.sxkj.odm.enums;
 
 
/**
 * odm 拼图任务枚举 枚举
 * 正射和三维
 *
 * @author zhongrj
 * @date 2025-12-18
 */
public enum OdmTypeEnum {
 
    ORT(0, "正射"),
 
    TILT(1, "倾斜"),
 
    ALB(2, "白膜");
 
    /**
     * 类型
     */
    private Integer type;
 
    /**
     * 名称-描述
     */
    private String name;
 
    OdmTypeEnum(Integer type, String name) {
        this.type = type;
        this.name = name;
    }
 
    public Integer getType() {
        return type;
    }
 
    public String getName() {
        return name;
    }
}