From 12effaf3549170e276e9866fa015e1819762482d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=A5=BF=E5=A4=A7=E9=94=90?= <1070211640@qq.com> Date: Fri, 31 May 2024 09:48:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A8=A1=E5=9E=8B=E4=BE=9D=E8=B5=96=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../platform/domain/ModelDependency.java | 30 +++++++++++++++- .../ModelDependencyDaoMapper.xml | 34 ++++++++++++++++--- 2 files changed, 58 insertions(+), 6 deletions(-) diff --git a/ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/domain/ModelDependency.java b/ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/domain/ModelDependency.java index 94798fc..8c75e2a 100644 --- a/ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/domain/ModelDependency.java +++ b/ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/domain/ModelDependency.java @@ -23,7 +23,14 @@ public class ModelDependency implements Serializable { * 当前模型id */ private Integer currentModelId; -/** + /** + * 实验实例id + */ + private Integer expInsId; + + + + /** * 父模型 */ private String parentModels; @@ -48,6 +55,10 @@ public class ModelDependency implements Serializable { */ private String projectDependency; + /** + * 版本 + */ + private String version; /** @@ -88,6 +99,14 @@ public class ModelDependency implements Serializable { this.currentModelId = currentModelId; } + public Integer getExpInsId() { + return expInsId; + } + + public void setExpInsId(Integer expInsId) { + this.expInsId = expInsId; + } + public String getParentModels() { return parentModels; } @@ -136,6 +155,15 @@ public class ModelDependency implements Serializable { this.projectDependency = projectDependency; } + public String getVersion() { + return version; + } + + public void setVersion(String version) { + this.version = version; + } + + public String getCreateBy() { return createBy; } diff --git a/ruoyi-modules/management-platform/src/main/resources/mapper/managementPlatform/ModelDependencyDaoMapper.xml b/ruoyi-modules/management-platform/src/main/resources/mapper/managementPlatform/ModelDependencyDaoMapper.xml index f31a75a..62582e9 100644 --- a/ruoyi-modules/management-platform/src/main/resources/mapper/managementPlatform/ModelDependencyDaoMapper.xml +++ b/ruoyi-modules/management-platform/src/main/resources/mapper/managementPlatform/ModelDependencyDaoMapper.xml @@ -5,12 +5,14 @@ + + @@ -21,7 +23,7 @@ @@ -29,7 +31,7 @@