From 1a07db181c732729abc1d6ec71ae206ecffca86d Mon Sep 17 00:00:00 2001
From: lihang <lihang@vci-tech.com>
Date: 星期三, 24 五月 2023 18:33:45 +0800
Subject: [PATCH] 迁移链接类型后台接口,修正属性字段,增加元数据查找应用范围功能
---
Source/UBCS/ubcs-service/ubcs-webservice/src/main/java/com/vci/ubcs/webservice/config/AttributeMapConfig.java | 41 +++++++++++++++++++++++++++++++++++++++++
1 files changed, 41 insertions(+), 0 deletions(-)
diff --git a/Source/UBCS/ubcs-service/ubcs-webservice/src/main/java/com/vci/ubcs/webservice/config/AttributeMapConfig.java b/Source/UBCS/ubcs-service/ubcs-webservice/src/main/java/com/vci/ubcs/webservice/config/AttributeMapConfig.java
index e69de29..89d1203 100644
--- a/Source/UBCS/ubcs-service/ubcs-webservice/src/main/java/com/vci/ubcs/webservice/config/AttributeMapConfig.java
+++ b/Source/UBCS/ubcs-service/ubcs-webservice/src/main/java/com/vci/ubcs/webservice/config/AttributeMapConfig.java
@@ -0,0 +1,41 @@
+package com.vci.ubcs.webservice.config;
+
+import org.springframework.boot.context.properties.ConfigurationProperties;
+import org.springframework.stereotype.Component;
+
+import java.util.List;
+import java.util.Map;
+
+@ConfigurationProperties(prefix="attrconfig")
+@Component
+public class AttributeMapConfig {
+ private Map<String,String> system_attrmap;
+
+ /****
+ * 鏃犱汉鏈轰富鏁版嵁涓嶦RP闆嗘垚瀛楁鍊艰浆鎹�
+ */
+ private Map<String,String> attrKey1ToKey2Map;
+ public Map<String, String> getSystem_attrmap() {
+ return system_attrmap;
+ }
+ public void setSystem_attrmap(Map<String, String> system_attrmap) {
+ this.system_attrmap = system_attrmap;
+ }
+
+
+ public Map<String, String> getAttrKey1ToKey2Map() {
+ return attrKey1ToKey2Map;
+ }
+
+ public void setAttrKey1ToKey2Map(Map<String, String> attrKey1ToKey2Map) {
+ this.attrKey1ToKey2Map = attrKey1ToKey2Map;
+ }
+
+ @Override
+ public String toString() {
+ return "AttributeMapConfig{" +
+ "system_attrmap=" + system_attrmap +
+ ", attrKey1ToKey2Map=" + attrKey1ToKey2Map +
+ '}';
+ }
+}
--
Gitblit v1.9.3