架构映射

This commit is contained in:
zhal 2022-07-29 10:18:47 +08:00
parent f4f5a8ae4c
commit 0366609459

View File

@ -8198,7 +8198,11 @@ public class CoeProcessLevelWeb extends ActionWeb {
String name1=((JSONObject) repositoryPathData.get(i)).getString("name"); String name1=((JSONObject) repositoryPathData.get(i)).getString("name");
if(repositoryPathData.get(i)!=""){ if(repositoryPathData.get(i)!=""){
if(UtilString.isNotEmpty(name1)){ if(UtilString.isNotEmpty(name1)){
propertyDao.updatePropertyByPropertyId(model.getId(), "Process_Architecture_L"+index, name1);
String str1=name1.substring(0, name1.lastIndexOf(".")+1);
String str2=name1.substring(str1.length()+1, name1.length());
propertyDao.updatePropertyByPropertyId(model.getId(), "Process_Architecture_L"+index, str2);
index++; index++;
} }
} }