flowable各节点初始化本地文件夹
This commit is contained in:
@@ -10,5 +10,5 @@ public class GetFileBaseInfoReq {
|
||||
private String path;
|
||||
|
||||
@Schema(description = "文件id")
|
||||
private Integer fileId;
|
||||
private Long fileId;
|
||||
}
|
||||
@@ -96,8 +96,8 @@ public class DataClientFeignClientImpl implements IDataFeignClient {
|
||||
}
|
||||
|
||||
@Override
|
||||
public SdmResponse getFileBaseInfo(GetFileBaseInfoReq req) {
|
||||
SdmResponse response;
|
||||
public SdmResponse<FileMetadataInfoResp> getFileBaseInfo(GetFileBaseInfoReq req) {
|
||||
SdmResponse<FileMetadataInfoResp> response;
|
||||
try {
|
||||
response = dataClient.getFileBaseInfo(req);
|
||||
log.info("查询文件基本信息响应:"+ response);
|
||||
|
||||
@@ -47,7 +47,7 @@ public interface IDataFeignClient {
|
||||
* @return
|
||||
*/
|
||||
@PostMapping("data/getFileBaseInfo")
|
||||
SdmResponse getFileBaseInfo(@RequestBody @Validated GetFileBaseInfoReq req);
|
||||
SdmResponse<FileMetadataInfoResp> getFileBaseInfo(@RequestBody @Validated GetFileBaseInfoReq req);
|
||||
|
||||
@PostMapping("/data/approveDataFile")
|
||||
SdmResponse approveDataFile(@RequestBody LaunchApproveReq req);
|
||||
|
||||
Reference in New Issue
Block a user