1.完成生成简历
This commit is contained in:
@@ -103,7 +103,7 @@ public class DictUtils
|
||||
{
|
||||
for (String value : dictValue.split(separator))
|
||||
{
|
||||
if (value.equals(dict.getDictValue()))
|
||||
if (value.trim().equals(dict.getDictValue().trim()))
|
||||
{
|
||||
propertyString.append(dict.getDictLabel()).append(separator);
|
||||
break;
|
||||
@@ -115,7 +115,7 @@ public class DictUtils
|
||||
{
|
||||
for (BussinessDictData dict : datas)
|
||||
{
|
||||
if (dictValue.equals(dict.getDictValue()))
|
||||
if (dictValue.trim().equals(dict.getDictValue().trim()))
|
||||
{
|
||||
return dict.getDictLabel();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user