zxl
昨天 7ec17b93b34a060233e5f193fa47fa243f7efafc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cn.lili.modules.lmk.enums.general;
 
import lombok.AllArgsConstructor;
import lombok.Getter;
 
/**
 * 所有的启用和禁用状态
 */
@Getter
@AllArgsConstructor
public enum EnableStatusEnums {
    /**
     * 启用状态
     */
    ENABLE("启用"),
    DISABLE("禁用");
    private final String description;
}