## 系统类型改为众康;

This commit is contained in:
cabbage 2025-10-15 14:57:09 +08:00
parent 31f8fa8122
commit 545d17037a
1 changed files with 1 additions and 16 deletions

View File

@ -16,7 +16,7 @@ public enum ESystemType {
/** /**
* 默认新零售 * 默认新零售
*/ */
DEFAULT(2, "新零售", 0), DEFAULT(2, "众康", 0),
/** /**
* 全部 * 全部
@ -53,19 +53,4 @@ public enum ESystemType {
return null; return null;
} }
/**
* 获取有效系统类型
*
* @return
*/
public static List<ESystemType> getEnableList() {
List<ESystemType> list = new ArrayList<>();
for (ESystemType enums : ESystemType.values()) {
if (EYesNo.YES.getIntValue() == enums.getEnable()) {
list.add(enums);
}
}
return list;
}
} }