wangmengmeng
2024-12-24 24432a361d5c6bd6f3d8c008693e9f1155d62517
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package com.dji.sdk.cloudapi.log;
 
/**
 * @author sean
 * @version 1.2
 * @date 2022/9/9
 */
public class FileUploadProgressFile {
 
    private LogModuleEnum module;
 
    private Long size;
 
    private String deviceSn;
 
    private String key;
 
    private String fingerprint;
 
    private LogFileProgress progress;
 
    public FileUploadProgressFile() {
    }
 
    @Override
    public String toString() {
        return "FileUploadProgressFile{" +
                "module=" + module +
                ", size=" + size +
                ", deviceSn='" + deviceSn + '\'' +
                ", key='" + key + '\'' +
                ", fingerprint='" + fingerprint + '\'' +
                ", progress=" + progress +
                '}';
    }
 
    public LogModuleEnum getModule() {
        return module;
    }
 
    public FileUploadProgressFile setModule(LogModuleEnum module) {
        this.module = module;
        return this;
    }
 
    public Long getSize() {
        return size;
    }
 
    public FileUploadProgressFile setSize(Long size) {
        this.size = size;
        return this;
    }
 
    public String getDeviceSn() {
        return deviceSn;
    }
 
    public FileUploadProgressFile setDeviceSn(String deviceSn) {
        this.deviceSn = deviceSn;
        return this;
    }
 
    public String getKey() {
        return key;
    }
 
    public FileUploadProgressFile setKey(String key) {
        this.key = key;
        return this;
    }
 
    public String getFingerprint() {
        return fingerprint;
    }
 
    public FileUploadProgressFile setFingerprint(String fingerprint) {
        this.fingerprint = fingerprint;
        return this;
    }
 
    public LogFileProgress getProgress() {
        return progress;
    }
 
    public FileUploadProgressFile setProgress(LogFileProgress progress) {
        this.progress = progress;
        return this;
    }
}