From 37d730454255d0680c2bc4f1e15dc5cd1a55e6a9 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期三, 30 十月 2024 09:58:36 +0800 Subject: [PATCH] 部门分配成员接口和界面传参修改,枚举修改报错修复提交 --- 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