| 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 = "common_status", name = "通用状态") |  | public enum Status implements IDictionary { |  |   |  |     ENABLE(1, "有效"), DISABLE(0, "无效"); |  |   |  |     private Integer value; |  |     private String name; |  |   |  |     Status(int value, String name) { |  |         this.value = value; |  |         this.name = name; |  |     } |  |   |  |     @Override |  |     public Integer getValue() { |  |         return value; |  |     } |  |   |  |     @Override |  |     public String getName() { |  |         return name; |  |     } |  | } | 
 |