3
0
Fork 0

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

This commit is contained in:
sangelxiu1 2025-08-21 10:05:14 +08:00
parent 572bb244ea
commit 1f27fe9df6
1 changed files with 12 additions and 0 deletions

View File

@ -46,4 +46,16 @@ public enum EWaresType {
}
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 "";
}
}