3
0
Fork 0

## Feat - 迁移产品销售统计

This commit is contained in:
sangelxiu1 2025-08-21 14:31:31 +08:00
parent 1789bfbcd5
commit b96864383a
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 "";
}
} }