删除 yes or no 枚举

This commit is contained in:
gong
2025-12-18 20:38:33 +08:00
parent 47f28d7bbb
commit 8ea7ef8c50
18 changed files with 99 additions and 130 deletions

View File

@@ -1,27 +0,0 @@
package com.czg.enums;
/**
* 是否枚举
* @author tankaikai
* @since 2025-02-11 14:56
*/
public enum YesNoEnum {
/**
* 是(删除)
*/
YES(1),
/**
* 否(未删除)
*/
NO(0);
private int value;
YesNoEnum(int value) {
this.value = value;
}
public int value() {
return this.value;
}
}