From 884d3ab7f43b8ccdfd729349970d576a9493f375 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Fri, 30 Aug 2024 17:26:27 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E5=90=8E=E7=AB=AF-?= =?UTF-8?q?=E5=BA=9F=E5=BC=83public=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1234808854773760]后端-废弃public接口 http://192.168.0.96:8090/demo/rdm.html#/task-detail/939050947543040/939050947543050/1234808854773760 --- .../job/action/DownloadAutoexecJobOutputFileBatchApi.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/neatlogic/module/autoexec/api/job/action/DownloadAutoexecJobOutputFileBatchApi.java b/src/main/java/neatlogic/module/autoexec/api/job/action/DownloadAutoexecJobOutputFileBatchApi.java index 7495f581..3ed71fa8 100644 --- a/src/main/java/neatlogic/module/autoexec/api/job/action/DownloadAutoexecJobOutputFileBatchApi.java +++ b/src/main/java/neatlogic/module/autoexec/api/job/action/DownloadAutoexecJobOutputFileBatchApi.java @@ -15,22 +15,22 @@ along with this program. If not, see .*/ package neatlogic.module.autoexec.api.job.action; +import com.alibaba.fastjson.JSONObject; import neatlogic.framework.asynchronization.threadlocal.UserContext; import neatlogic.framework.auth.core.AuthAction; import neatlogic.framework.autoexec.auth.AUTOEXEC_BASE; import neatlogic.framework.autoexec.dao.mapper.AutoexecJobMapper; import neatlogic.framework.autoexec.dto.job.AutoexecJobVo; import neatlogic.framework.autoexec.exception.AutoexecJobNotFoundException; -import neatlogic.framework.exception.runner.RunnerHttpRequestException; import neatlogic.framework.common.constvalue.ApiParamType; import neatlogic.framework.common.constvalue.SystemUser; import neatlogic.framework.dto.runner.RunnerVo; +import neatlogic.framework.exception.runner.RunnerHttpRequestException; import neatlogic.framework.integration.authentication.enums.AuthenticateType; import neatlogic.framework.restful.annotation.*; import neatlogic.framework.restful.constvalue.OperationTypeEnum; -import neatlogic.framework.restful.core.publicapi.PublicBinaryStreamApiComponentBase; +import neatlogic.framework.restful.core.privateapi.PrivateBinaryStreamApiComponentBase; import neatlogic.framework.util.HttpRequestUtil; -import com.alibaba.fastjson.JSONObject; import org.apache.commons.lang3.StringUtils; import org.springframework.stereotype.Service; @@ -47,7 +47,7 @@ import java.util.List; @Service @AuthAction(action = AUTOEXEC_BASE.class) @OperationType(type = OperationTypeEnum.OPERATE) -public class DownloadAutoexecJobOutputFileBatchApi extends PublicBinaryStreamApiComponentBase { +public class DownloadAutoexecJobOutputFileBatchApi extends PrivateBinaryStreamApiComponentBase { @Resource private AutoexecJobMapper autoexecJobMapper; -- Gitee