jinlin
2023-11-03 35435e8b1995e6775c82b86652381e07e3faff54
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
package com.zt.common.constant;
 
import com.zt.common.annotation.Dictionary;
 
@Dictionary(type = "execute_status", name = "执行状态")
public enum ExecuteStatus implements IDictionary {
 
    SUCCESS(1, "成功"), FAIL(0, "失败");
 
    private Integer value;
    private String name;
 
    ExecuteStatus(int value, String name) {
        this.value = value;
        this.name = name;
    }
 
    @Override
    public Integer getValue() {
        return value;
    }
 
    @Override
    public String getName() {
        return name;
    }
}