3
0
Fork 0

## Opt - 首页统计订单类型

This commit is contained in:
sangelxiu1 2025-08-21 14:31:31 +08:00
parent 1789bfbcd5
commit 019971a530
1 changed files with 12 additions and 0 deletions

View File

@ -46,4 +46,16 @@ public enum EWaresType {
} }
return null; return null;
} }
public static String getEnumLabelByValue(Integer value) {
if (null == value) {
return "";
}
for (EWaresType eApproveStatus : EWaresType.values()) {
if (eApproveStatus.getValue().equals(value)) {
return eApproveStatus.getLabel();
}
}
return "";
}
} }