Commit 8f77f721 authored by 王向伟's avatar 王向伟

ChannelConfiguration copy不忽略空值

parent f84eb76a
......@@ -116,7 +116,8 @@ public class ChannelConfServiceImpl implements ChannelConfService {
clfCenterService.saveOrderCall(clfOrderCallBackList);
} else {
// update
BeanUtils.copyProperties(channelConfiguration, channelConfigurationExsit, IgnorePropertiesUtil.getNullPropertyNames(channelConfiguration));
// BeanUtils.copyProperties(channelConfiguration, channelConfigurationExsit, IgnorePropertiesUtil.getNullPropertyNames(channelConfiguration));
BeanUtils.copyProperties(channelConfiguration, channelConfigurationExsit);
clfCenterService.saveChannelConfiguration(channelConfigurationExsit);
// 更新OrderCallBack
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment