xieb
2023-09-23 eeefddd9cb9759febda0d81488a490b3cc2650fa
src/main/java/com/dji/sample/media/service/IFileService.java
@@ -44,7 +44,7 @@
     * @param pageSize
     * @return
     */
    PaginationData<MediaFileDTO> getJobsPaginationByWorkspaceId(String workspaceId, long page, long pageSize);
    PaginationData<MediaFileDTO> getMediaFilesPaginationByWorkspaceId(String workspaceId, long page, long pageSize);
    /**
     * Get the download address of the file.
@@ -53,4 +53,12 @@
     * @return
     */
    URL getObjectUrl(String workspaceId, String fileId);
    /**
     * Query all media files of a job.
     * @param workspaceId
     * @param jobId
     * @return
     */
    List<MediaFileDTO> getFilesByWorkspaceAndJobId(String workspaceId, String jobId);
}