fix:试验结果建文件夹

This commit is contained in:
2026-02-03 10:30:39 +08:00
parent 86350d1729
commit df35e5ea2f
3 changed files with 70 additions and 5 deletions

View File

@@ -14,4 +14,13 @@ public class CommonConstants {
public static final String GENERAL_N = "N";
/**
* 交付物文件夹名
*/
public static final String DELIVERABLE_DIR_NAME = "交付物文件";
/**
* 试验结果文件夹名
*/
public static final String EXPERIMENT_DIR_NAME = "试验结果";
}

View File

@@ -64,11 +64,11 @@ public class DataClientFeignClientImpl implements IDataFeignClient {
SdmResponse<PageDataResp<List<FileMetadataInfoResp>>> response;
try {
response = dataClient.queryDir(req);
log.info("创建文响应件夹"+ response);
log.info("查询文件夹响应"+ response);
return response;
} catch (Exception e) {
log.error("创建文件夹失败", e);
return SdmResponse.failed("创建文件夹失败");
log.error("查询文件夹失败", e);
return SdmResponse.failed("查询文件夹失败");
}
}