批量下发功能增加,delRow.tag中暂时不打开此功能。
app topic domain和app domain业务修改domain存储cfgkeyword属性。 摘要修改level属性存储为下发的最终数值。 同步的单域配置的增加时间和状态属性从entity中获取
This commit is contained in:
@@ -1354,7 +1354,7 @@ public class AppCfgService extends BaseService {
|
||||
entity.setTableName(AppDomainCfg.getTablename());
|
||||
appCfgDao.auditCfg(entity);
|
||||
if (isAudit == 1) {
|
||||
entity.setCfgKeywords(entity.getDomain());
|
||||
entity.setCfgKeywords(entity.getCfgKeywords());
|
||||
List<AppDomainCfg> list = new ArrayList();
|
||||
list.add(entity);
|
||||
Map<String, List> map = cfgConvert(strRegionList, list, 2, entity, groupRelationList);
|
||||
@@ -1391,7 +1391,7 @@ public class AppCfgService extends BaseService {
|
||||
// 设置APP自定义域
|
||||
String userRegion = "APP_ID=" + entity.getAppCode() + Constants.USER_REGION_SPLIT + "DOMAIN_ID="
|
||||
+ entity.getCompileId() + Constants.USER_REGION_SPLIT + "DOMAIN_STR="
|
||||
+ keywordsEscape(entity.getDomain());
|
||||
+ keywordsEscape(entity.getCfgKeywords());
|
||||
maatCfg.setUserRegion(userRegion);
|
||||
configCompileList.add(maatCfg);
|
||||
maatBean.setConfigCompileList(configCompileList);
|
||||
@@ -1440,7 +1440,7 @@ public class AppCfgService extends BaseService {
|
||||
appCfgDao.auditCfg(entity);
|
||||
// 域名为关键字
|
||||
if (isAudit == 1) {
|
||||
entity.setCfgKeywords(entity.getDomain());
|
||||
entity.setCfgKeywords(entity.getCfgKeywords());
|
||||
List<AppTopicDomainCfg> list = new ArrayList();
|
||||
list.add(entity);
|
||||
Map<String, List> map = cfgConvert(strRegionList, list, 2, entity, groupRelationList);
|
||||
@@ -1476,7 +1476,7 @@ public class AppCfgService extends BaseService {
|
||||
maatCfg.setIsValid(entity.getIsValid());
|
||||
|
||||
// 设置APP自定义域
|
||||
String domain = entity.getDomain();
|
||||
String domain = entity.getCfgKeywords();
|
||||
WebsiteDomainTopic websiteDomainTopic = new WebsiteDomainTopic();
|
||||
websiteDomainTopic.setDomain(domain);
|
||||
//查询domainId
|
||||
|
||||
Reference in New Issue
Block a user