From 4d3f7f10d422fd6eee128fa32bc48ce7b10ec09d Mon Sep 17 00:00:00 2001
From: wangting <wangting@vci-tech.com>
Date: 星期二, 07 一月 2025 18:24:21 +0800
Subject: [PATCH] 属性定义参照类型改成下拉树选择,处理值域显示不正确的问题,属性名选择改为下拉搜索
---
Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/pagemodel/OsAttributeVO.java | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 55 insertions(+), 0 deletions(-)
diff --git a/Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/pagemodel/OsAttributeVO.java b/Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/pagemodel/OsAttributeVO.java
index 8df8068..4de3c81 100644
--- a/Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/pagemodel/OsAttributeVO.java
+++ b/Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/pagemodel/OsAttributeVO.java
@@ -43,6 +43,14 @@
* 灞炴�х被鍨嬫樉绀烘枃鏈�
*/
private String attributeDataTypeText;
+ /**
+ * 灞炴�I鎺т欢鏄剧ず绫诲瀷
+ */
+ private String attributeUIType;
+ /**
+ * 灞炴�I鎺т欢鏄剧ず绫诲瀷鏂囨湰
+ */
+ private String attributeUITypeText;
/**
* 鏄惁鍙互涓虹┖
@@ -73,6 +81,16 @@
* 鍙傜収鐨勪笟鍔$被鍨嬪悕绉�
*/
private String btmTypeName;
+
+ /**
+ * 鍙傜収鐨勯摼鎺ョ被鍨嬪悕绉�
+ */
+ private String linkTypeName;
+
+ /**
+ * 閫夋嫨浜嗛摼鎺ョ被鍨嬫椂閫夋嫨鐨勭増鏈�
+ */
+ private Integer version;
/**
* 灞炴�х殑闀垮害
@@ -238,6 +256,22 @@
this.btmTypeName = btmTypeName;
}
+ public String getLinkTypeName() {
+ return linkTypeName;
+ }
+
+ public void setLinkTypeName(String linkTypeName) {
+ this.linkTypeName = linkTypeName;
+ }
+
+ public Integer getVersion() {
+ return version;
+ }
+
+ public void setVersion(Integer version) {
+ this.version = version;
+ }
+
public Integer getAttrLength() {
return attrLength;
}
@@ -327,6 +361,22 @@
this.scaleLength = scaleLength;
}
+ public String getAttributeUIType() {
+ return attributeUIType;
+ }
+
+ public void setAttributeUIType(String attributeUIType) {
+ this.attributeUIType = attributeUIType;
+ }
+
+ public String getAttributeUITypeText() {
+ return attributeUITypeText;
+ }
+
+ public void setAttributeUITypeText(String attributeUITypeText) {
+ this.attributeUITypeText = attributeUITypeText;
+ }
+
@Override
public String toString() {
return "OsAttributeVO{" +
@@ -336,16 +386,21 @@
", description='" + description + '\'' +
", attributeDataType='" + attributeDataType + '\'' +
", attributeDataTypeText='" + attributeDataTypeText + '\'' +
+ ", attributeUIType='" + attributeUIType + '\'' +
+ ", attributeUITypeText='" + attributeUITypeText + '\'' +
", nullableFlag=" + nullableFlag +
", defaultValue='" + defaultValue + '\'' +
", enumId='" + enumId + '\'' +
", enumName='" + enumName + '\'' +
", btmTypeId='" + btmTypeId + '\'' +
", btmTypeName='" + btmTypeName + '\'' +
+ ", linkTypeName='" + linkTypeName + '\'' +
+ ", version=" + version +
", attrLength=" + attrLength +
", precisionLength=" + precisionLength +
", scaleLength=" + scaleLength +
", range='" + range + '\'' +
+ ", other='" + other + '\'' +
", btmname='" + btmname + '\'' +
", owner='" + owner + '\'' +
", creator='" + creator + '\'' +
--
Gitblit v1.9.3