This commit is contained in:
2023-07-29 15:37:11 +08:00
parent e8fcde6896
commit 47d7b3f84b
7 changed files with 17 additions and 17 deletions

View File

@@ -83,15 +83,7 @@ public class Constants {
public static final String ZERO_ONE = "01";
public static final String ZERO_THREE = "03";
/**
* 删除标识 0标识正常
*/
public static final String DEL_FLAG_NORMAL = "0";
/**
* 删除标识 1标识被删除
*/
public static final String DEL_FLAG_DELETE = "1";
/**
* UTF-8 字符集
*/

View File

@@ -4,8 +4,8 @@ package com.jsowell.common.enums;
* 删除标识枚举
*/
public enum DelFlagEnum {
normal("0", "正常"),
delete("1", "删除"),
NORMAL("0", "正常"),
DELETE("1", "删除"),
;
private String value;