From 77917464f6dc78af3bf5480581a94abee6b826b3 Mon Sep 17 00:00:00 2001 From: chenjg <17688741996@163.com> Date: Fri, 19 Jul 2024 18:40:37 +0800 Subject: [PATCH] =?UTF-8?q?#[1199127977754624]=E5=8F=91=E5=B8=83=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E8=87=AA=E5=8A=A8=E5=8C=96=E4=BD=9C=E4=B8=9A=E9=87=8C?= =?UTF-8?q?=E5=AE=9E=E4=BE=8B=E6=98=BE=E7=A4=BA=E6=9C=80=E6=96=B0=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E5=AD=97=E6=AE=B5=20http://192.168.0.96:8090/demo/rdm?= =?UTF-8?q?.html#/story-detail/939050947543040/939050947543042/11991279777?= =?UTF-8?q?54624?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dto/instance/DeployInstanceVersionVo.java | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/src/main/java/neatlogic/framework/deploy/dto/instance/DeployInstanceVersionVo.java b/src/main/java/neatlogic/framework/deploy/dto/instance/DeployInstanceVersionVo.java index 50eb600..e81a94f 100644 --- a/src/main/java/neatlogic/framework/deploy/dto/instance/DeployInstanceVersionVo.java +++ b/src/main/java/neatlogic/framework/deploy/dto/instance/DeployInstanceVersionVo.java @@ -7,16 +7,18 @@ import neatlogic.framework.restful.annotation.EntityField; import java.util.Date; public class DeployInstanceVersionVo extends BaseEditorVo { - @EntityField(name = "应用系统id", type = ApiParamType.LONG) + @EntityField(name = "term.cmdb.appsystemid", type = ApiParamType.LONG) private Long appSystemId; - @EntityField(name = "应用模块id", type = ApiParamType.LONG) + @EntityField(name = "term.cmdb.appmoduleid", type = ApiParamType.LONG) private Long appModuleId; - @EntityField(name = "环境id", type = ApiParamType.LONG) + @EntityField(name = "term.cmdb.envid", type = ApiParamType.LONG) private Long envId; @EntityField(name = "实例id", type = ApiParamType.LONG) private Long resourceId; - @EntityField(name = "版本id", type = ApiParamType.LONG) + @EntityField(name = "common.versionid", type = ApiParamType.LONG) private Long versionId; + @EntityField(name = "term.deploy.version", type = ApiParamType.STRING) + private String version; @EntityField(name = "编译号", type = ApiParamType.INTEGER) private Integer buildNo; @@ -83,6 +85,14 @@ public class DeployInstanceVersionVo extends BaseEditorVo { this.versionId = versionId; } + public String getVersion() { + return version; + } + + public void setVersion(String version) { + this.version = version; + } + public Integer getBuildNo() { return buildNo; } -- Gitee