sean.zhou
2022-03-21 17835b967b48f2676cce3bbed081c6580602ee1c
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;
}