新增:后置正则过滤文件,不传就传递所有,传递就按照正则回传文件

This commit is contained in:
2026-02-10 17:18:33 +08:00
parent e34482000a
commit 475ba30aff
5 changed files with 8 additions and 6 deletions

View File

@@ -180,7 +180,7 @@ public class HpcCommandExcuteUtil {
public SdmResponse<Boolean> callHpcUploadToTarget(String jobId, String workDir,String minioBucket,
String callBackMinioDir,String callBackNasDir,
Long dirId,Long userId,Long tenantId) {
Long dirId,Long userId,Long tenantId,String outputFormat) {
com.alibaba.fastjson2.JSONObject paramJson = new com.alibaba.fastjson2.JSONObject();
paramJson.put("jobId", jobId);
paramJson.put("jobWorkDir", workDir);
@@ -190,6 +190,7 @@ public class HpcCommandExcuteUtil {
paramJson.put("dirId", dirId);
paramJson.put("userId", userId);
paramJson.put("tenantId", tenantId);
paramJson.put("outputFormat", outputFormat);
Boolean call = false;
String resultString = "";
try {