From 740e65eeefbf5e0ecfc47177814f9bd35490f0a3 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Tue, 24 Dec 2024 17:41:56 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E8=87=AA=E5=AE=9A?= =?UTF-8?q?=E4=B9=89=E5=B7=A5=E5=85=B7=E6=B7=BB=E5=8A=A0=E5=BC=95=E7=94=A8?= =?UTF-8?q?=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1318900732493824]自定义工具添加引用列表 http://192.168.0.96:8090/demo/rdm.html#/task-detail/939050947543040/939050947543050/1318900732493824 --- .../autoexec/dto/script/AutoexecScriptVo.java | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/main/java/neatlogic/framework/autoexec/dto/script/AutoexecScriptVo.java b/src/main/java/neatlogic/framework/autoexec/dto/script/AutoexecScriptVo.java index 1de0cb36..112453bd 100644 --- a/src/main/java/neatlogic/framework/autoexec/dto/script/AutoexecScriptVo.java +++ b/src/main/java/neatlogic/framework/autoexec/dto/script/AutoexecScriptVo.java @@ -15,15 +15,14 @@ along with this program. If not, see .*/ package neatlogic.framework.autoexec.dto.script; +import com.alibaba.fastjson.annotation.JSONField; import neatlogic.framework.autoexec.constvalue.ScriptVersionStatus; import neatlogic.framework.autoexec.dto.AutoexecOperationVo; import neatlogic.framework.autoexec.dto.AutoexecParamVo; import neatlogic.framework.common.constvalue.ApiParamType; import neatlogic.framework.file.dto.FileVo; import neatlogic.framework.restful.annotation.EntityField; -import com.alibaba.fastjson.annotation.JSONField; import org.apache.commons.collections4.CollectionUtils; -import org.apache.commons.lang3.StringUtils; import java.io.Serializable; import java.util.ArrayList; @@ -86,6 +85,9 @@ public class AutoexecScriptVo extends AutoexecOperationVo implements Serializabl @EntityField(name = "包文件", type = ApiParamType.JSONOBJECT) private FileVo packageFile; + @EntityField(name = "引用数量", type = ApiParamType.INTEGER) + private Integer referenceCount; + public AutoexecScriptVo() { } @@ -270,4 +272,14 @@ public class AutoexecScriptVo extends AutoexecOperationVo implements Serializabl public void setPackageFile(FileVo packageFile) { this.packageFile = packageFile; } + + @Override + public Integer getReferenceCount() { + return referenceCount; + } + + @Override + public void setReferenceCount(Integer referenceCount) { + this.referenceCount = referenceCount; + } } -- Gitee