mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
修复BeanUtil.copyProperties中mapToMap时key被转为String问题
This commit is contained in:
@@ -648,7 +648,7 @@ public class SoapClient implements HeaderOperation<SoapClient> {
|
||||
Entry entry;
|
||||
for (final Object obj : ((Map) value).entrySet()) {
|
||||
entry = (Entry) obj;
|
||||
setParam(childEle, entry.getKey().toString(), entry.getValue(), prefix);
|
||||
setParam(childEle, StrUtil.toStringOrNull(entry.getKey()), entry.getValue(), prefix);
|
||||
}
|
||||
} else {
|
||||
// 单个值
|
||||
|
Reference in New Issue
Block a user