## 系统类型改为众康;
This commit is contained in:
parent
e7ebe9a0e9
commit
11458e86fe
|
@ -16,7 +16,7 @@ public enum ESystemType {
|
|||
/**
|
||||
* 默认(新零售)
|
||||
*/
|
||||
DEFAULT(2, "新零售", 0),
|
||||
DEFAULT(2, "众康", 0),
|
||||
|
||||
/**
|
||||
* 全部
|
||||
|
@ -53,19 +53,4 @@ public enum ESystemType {
|
|||
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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue