From 18c43123b51a1688ab4ae01fe3d171c7d92e619b Mon Sep 17 00:00:00 2001 From: wangting <wangting@vci-tech.com> Date: 星期四, 16 一月 2025 18:19:34 +0800 Subject: [PATCH] 1、调整会话过期提示 2、流程设计器隐藏拓展按钮,隐藏右下角图标 --- Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/dto/OsAttributeDTO.java | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 45 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 0f50ec0..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; /** * 鏄惁鍙互涓虹┖ @@ -68,6 +72,16 @@ * 鍙傜収鐨勪笟鍔$被鍨嬪悕绉� */ private String btmTypeName; + + /** + * 鍙傜収鐨勯摼鎺ョ被鍨嬪悕绉� + */ + private String linkTypeName; + + /** + * 閫夋嫨浜嗛摼鎺ョ被鍨嬫椂閫夋嫨鐨勭増鏈� + */ + private Integer version; /** * 灞炴�х殑闀垮害 @@ -113,6 +127,22 @@ * 鏈�鍚庝慨鏀规椂闂达紝鏍煎紡鏄痽yyy-MM-dd HH:mm:ss */ private Date lastModifyTime; + + public String getLinkTypeName() { + return linkTypeName; + } + + public void setLinkTypeName(String linkTypeName) { + this.linkTypeName = linkTypeName; + } + + public void setVersion(Integer version) { + this.version = version; + } + + public Integer getVersion() { + return version; + } public void setCreator(String creator) { this.creator = creator; @@ -275,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{" + @@ -283,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