dongyukun
7 天以前 e88fba9645a57535d858ce48da8e9d9a3dc84adc
提交 | 用户 | 时间
2b47c5 1 package com.iailab.module.model.common.enums;
D 2
3 /**
4  * @author DongYukun
5  * @Description
6  * @createTime 2025年01月02日 13:43:00
7  */
8 public enum IsWriteEnum {
9     ISWRITE(1), // 写入
10     NOTWRITE(0);  //不写入
11
12     private Integer value;
13
14     IsWriteEnum(Integer value) {
15         this.value = value;
16     }
17
18     public Integer value() {
19         return this.value;
20     }
21 }