From 328ff7b2a63557bec07f4d31f8223c332315005f Mon Sep 17 00:00:00 2001 From: linbangquan <1437892690@qq.com> Date: Wed, 27 Dec 2023 12:05:33 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E5=A4=8D]=20=E5=BA=94=E7=94=A8?= =?UTF-8?q?=E9=85=8D=E7=BD=AE-=E7=BC=96=E8=BE=91=E6=B5=81=E6=B0=B4?= =?UTF-8?q?=E7=BA=BF=E6=97=B6=EF=BC=8C=E5=B7=A5=E5=85=B7=E7=9A=84=E4=B8=BA?= =?UTF-8?q?=E5=8E=BF=E7=BA=A7=E5=88=AB=E5=9B=9E=E6=98=BE=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1055072903987200]应用配置-编辑流水线时,工具的为县级别回显异常 http://192.168.0.96:8090/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1055072903987200 --- .../autoexec/api/combop/AutoexecCombopDetailGetApi.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/main/java/neatlogic/module/autoexec/api/combop/AutoexecCombopDetailGetApi.java b/src/main/java/neatlogic/module/autoexec/api/combop/AutoexecCombopDetailGetApi.java index 66eab2e7..1f4ab117 100644 --- a/src/main/java/neatlogic/module/autoexec/api/combop/AutoexecCombopDetailGetApi.java +++ b/src/main/java/neatlogic/module/autoexec/api/combop/AutoexecCombopDetailGetApi.java @@ -34,7 +34,6 @@ import neatlogic.framework.common.constvalue.ApiParamType; import neatlogic.framework.restful.annotation.*; import neatlogic.framework.restful.constvalue.OperationTypeEnum; import neatlogic.framework.restful.core.privateapi.PrivateApiComponentBase; -import neatlogic.module.autoexec.dao.mapper.AutoexecCombopVersionMapper; import neatlogic.module.autoexec.service.AutoexecCombopService; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @@ -54,12 +53,14 @@ public class AutoexecCombopDetailGetApi extends PrivateApiComponentBase { @Resource private AutoexecCombopMapper autoexecCombopMapper; - @Resource - private AutoexecCombopVersionMapper autoexecCombopVersionMapper; - @Resource private AutoexecTypeMapper autoexecTypeMapper; + @Override + public boolean disableReturnCircularReferenceDetect() { + return true; + } + @Input({ @Param(name = "id", type = ApiParamType.LONG, isRequired = true, desc = "common.id"), @Param(name = "versionId", type = ApiParamType.LONG, desc = "common.versionid") -- Gitee