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.model.common.enums;
|
| /**
| * @author DongYukun
| * @Description
| * @createTime 2025年01月02日 13:43:00
| */
| public enum IsWriteEnum {
| ISWRITE(1), // 写入
| NOTWRITE(0); //不写入
|
| private Integer value;
|
| IsWriteEnum(Integer value) {
| this.value = value;
| }
|
| public Integer value() {
| return this.value;
| }
| }
|
|