批量下发功能增加,delRow.tag中暂时不打开此功能。
app topic domain和app domain业务修改domain存储cfgkeyword属性。 摘要修改level属性存储为下发的最终数值。 同步的单域配置的增加时间和状态属性从entity中获取
This commit is contained in:
@@ -1303,18 +1303,24 @@ public class ConfigSynchronizationService extends BaseService{
|
||||
ipCfg.setRegionId(regionIds.get(0));
|
||||
regionIds.remove(0);
|
||||
ipCfg.setGroupId(groupIds.get(0));
|
||||
ipCfg.setIsValid(entity.getIsValid());
|
||||
ipCfg.setAuditTime(StringUtil.isEmpty(entity.getAuditTime()) ? cfg.getAuditTime():entity.getAuditTime());
|
||||
groupIds.remove(0);
|
||||
list1.add(ipCfg);
|
||||
}else if(cfgType==2){
|
||||
strCfg.setRegionId(regionIds.get(0));
|
||||
regionIds.remove(0);
|
||||
strCfg.setGroupId(groupIds.get(0));
|
||||
strCfg.setIsValid(entity.getIsValid());
|
||||
strCfg.setAuditTime(StringUtil.isEmpty(entity.getAuditTime()) ? cfg.getAuditTime():entity.getAuditTime());
|
||||
groupIds.remove(0);
|
||||
list1.add(strCfg);
|
||||
}else if(cfgType==3){
|
||||
complexStrCfg.setRegionId(regionIds.get(0));
|
||||
regionIds.remove(0);
|
||||
complexStrCfg.setGroupId(groupIds.get(0));
|
||||
complexStrCfg.setIsValid(entity.getIsValid());
|
||||
complexStrCfg.setAuditTime(StringUtil.isEmpty(entity.getAuditTime()) ? cfg.getAuditTime():entity.getAuditTime());
|
||||
groupIds.remove(0);
|
||||
list1.add(complexStrCfg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user