|
@@ -56,6 +56,10 @@ public class DictUtils
|
|
|
*/
|
|
|
public static String getDictLabel(String dictType, String dictValue)
|
|
|
{
|
|
|
+ if (StringUtils.isEmpty(dictValue))
|
|
|
+ {
|
|
|
+ return StringUtils.EMPTY;
|
|
|
+ }
|
|
|
return getDictLabel(dictType, dictValue, SEPARATOR);
|
|
|
}
|
|
|
|
|
@@ -68,6 +72,10 @@ public class DictUtils
|
|
|
*/
|
|
|
public static String getDictValue(String dictType, String dictLabel)
|
|
|
{
|
|
|
+ if (StringUtils.isEmpty(dictLabel))
|
|
|
+ {
|
|
|
+ return StringUtils.EMPTY;
|
|
|
+ }
|
|
|
return getDictValue(dictType, dictLabel, SEPARATOR);
|
|
|
}
|
|
|
|