From 1b523206f18c1b1fcc8514198392965a34bd2ffe Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Thu, 17 Oct 2024 11:26:25 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E9=A1=B9=E7=9F=A9=E9=98=B5=E7=9A=84=E5=AD=97=E6=AE=B5uuid?= =?UTF-8?q?=E7=94=A8=20key=20=E7=94=9F=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1268891173486592]配置项矩阵的字段uuid用 key 生成 http://192.168.0.96:8090/demo/rdm.html#/story-detail/939050947543040/939050947543042/1268891173486592 --- .../framework/matrix/dto/MatrixAttributeVo.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/main/java/neatlogic/framework/matrix/dto/MatrixAttributeVo.java b/src/main/java/neatlogic/framework/matrix/dto/MatrixAttributeVo.java index d3356f2c6..6ae67c24c 100644 --- a/src/main/java/neatlogic/framework/matrix/dto/MatrixAttributeVo.java +++ b/src/main/java/neatlogic/framework/matrix/dto/MatrixAttributeVo.java @@ -27,6 +27,9 @@ public class MatrixAttributeVo extends BasePageVo { @EntityField( name = "属性唯一标识", type = ApiParamType.STRING) private String uniqueIdentifier; + + @EntityField( name = "默认属性唯一标识", type = ApiParamType.STRING) + private String defaultUniqueIdentifier; @EntityField( name = "属性名", type = ApiParamType.STRING) private String name; @EntityField( name = "属性label", type = ApiParamType.STRING) @@ -77,6 +80,14 @@ public class MatrixAttributeVo extends BasePageVo { this.uniqueIdentifier = uniqueIdentifier; } + public String getDefaultUniqueIdentifier() { + return defaultUniqueIdentifier; + } + + public void setDefaultUniqueIdentifier(String defaultUniqueIdentifier) { + this.defaultUniqueIdentifier = defaultUniqueIdentifier; + } + public String getName() { return name; } -- Gitee