From 36c2449aec5b51e5ed4e5c6841154b746060e09a Mon Sep 17 00:00:00 2001 From: ludc Date: 星期六, 14 九月 2024 12:22:20 +0800 Subject: [PATCH] UI上下文导入接口上传 --- Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/dto/OsAttributeDTO.java | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/dto/OsAttributeDTO.java b/Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/dto/OsAttributeDTO.java index 3731204..5232df6 100644 --- a/Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/dto/OsAttributeDTO.java +++ b/Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/dto/OsAttributeDTO.java @@ -38,6 +38,10 @@ * 灞炴�х被鍨嬶紝浣跨敤鏋氫妇VciFieldTypeEnum */ private String attributeDataType; + /** + * 灞炴�I鎺т欢鏄剧ず绫诲瀷 + */ + private String attributeUIType; /** * 鏄惁鍙互涓虹┖ @@ -301,6 +305,14 @@ this.scaleLength = scaleLength; } + public String getAttributeUIType() { + return attributeUIType; + } + + public void setAttributeUIType(String attributeUIType) { + this.attributeUIType = attributeUIType; + } + @Override public String toString() { return "OsAttributeDTO{" + @@ -309,17 +321,24 @@ ", name='" + name + '\'' + ", description='" + description + '\'' + ", attributeDataType='" + attributeDataType + '\'' + + ", attributeUIType='" + attributeUIType + '\'' + ", nullableFlag=" + nullableFlag + ", defaultValue='" + defaultValue + '\'' + ", enumId='" + enumId + '\'' + ", enumName='" + enumName + '\'' + ", btmTypeId='" + btmTypeId + '\'' + ", btmTypeName='" + btmTypeName + '\'' + + ", linkTypeName='" + linkTypeName + '\'' + + ", version=" + version + ", attrLength=" + attrLength + ", precisionLength=" + precisionLength + ", scaleLength=" + scaleLength + ", range='" + range + '\'' + ", ts=" + ts + + ", creator='" + creator + '\'' + + ", createTime=" + createTime + + ", lastModifier='" + lastModifier + '\'' + + ", lastModifyTime=" + lastModifyTime + '}'; } } -- Gitblit v1.9.3