工业互联网平台2.0版本后端代码
Jay
2024-10-14 441d3055fb0876835050d52123808b1c46a53179
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;
    }
}