## Feat - 迁移产品销售统计
This commit is contained in:
parent
572bb244ea
commit
1f27fe9df6
|
@ -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 "";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue