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