提交 | 用户 | 时间 | ||
b425df | 1 | package com.iailab.module.model.common.enums; |
潘 | 2 | |
3 | /** | |
4 | * @author PanZhibao | |
5 | * @Description | |
6 | * @createTime 2023年07月17日 17:41:00 | |
7 | */ | |
8 | public enum IsEnableEnum { | |
9 | DISABLE(0), // 手动 | |
10 | ENABLE(1); //自动 | |
11 | ||
12 | private Integer value; | |
13 | ||
14 | IsEnableEnum(Integer value) { | |
15 | this.value = value; | |
16 | } | |
17 | ||
18 | public Integer value() { | |
19 | return this.value; | |
20 | } | |
21 | } |