删除 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

@@ -16,12 +16,12 @@ public interface SystemConstants {
* 是否:是
* 状态:允许,开启
*/
public static final Integer ONE = 1;
public static final int ONE = 1;
/**
* 是否:否
* 状态:进制,关闭
*/
public static final Integer ZERO = 0;
public static final int ZERO = 0;
}
/**