正在显示
1 个修改的文件
包含
2 行增加
和
2 行删除
| @@ -92,7 +92,7 @@ public class DictUtils | @@ -92,7 +92,7 @@ public class DictUtils | ||
| 92 | { | 92 | { |
| 93 | if (value.equals(dict.getDictValue())) | 93 | if (value.equals(dict.getDictValue())) |
| 94 | { | 94 | { |
| 95 | - propertyString.append(dict.getDictLabel() + separator); | 95 | + propertyString.append(dict.getDictLabel()).append(separator); |
| 96 | break; | 96 | break; |
| 97 | } | 97 | } |
| 98 | } | 98 | } |
| @@ -132,7 +132,7 @@ public class DictUtils | @@ -132,7 +132,7 @@ public class DictUtils | ||
| 132 | { | 132 | { |
| 133 | if (label.equals(dict.getDictLabel())) | 133 | if (label.equals(dict.getDictLabel())) |
| 134 | { | 134 | { |
| 135 | - propertyString.append(dict.getDictValue() + separator); | 135 | + propertyString.append(dict.getDictValue()).append(separator); |
| 136 | break; | 136 | break; |
| 137 | } | 137 | } |
| 138 | } | 138 | } |
-
请 注册 或 登录 后发表评论