1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| package com.dji.sample.media.model;
|
| import lombok.Data;
|
| /**
| * @author sean
| * @version 0.2
| * @date 2021/12/7
| */
| @Data
| public class FileUploadDTO {
|
| private FileExtensionDTO ext;
|
| private String fingerprint;
|
| private String name;
|
| private String path;
|
| private FileMetadataDTO metadata;
|
| private String objectKey;
|
| private Integer subFileType;
| }
|
|