From c826afb6dbc2c1d4433b3c127c5f30f9f72fb2dc Mon Sep 17 00:00:00 2001
From: xiejun <xiejun@vci-tech.com>
Date: 星期一, 09 九月 2024 17:18:37 +0800
Subject: [PATCH] 属性加UI类型字段

---
 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