admin
7 天以前 7f0825f8195a522ed7e8bcdb6347f3a719e06c74
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
package com.weikou.beibeivideo.ui.recent;
 
public class DownloadEntity {
 
    private String title;
    private String description;
    private int status;
    private int reason;
    private long totalBytes;
    private long currentBytes;
    private long date;
    private long id;
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public int getStatus() {
        return status;
    }
 
    public void setStatus(int status) {
        this.status = status;
    }
 
    public int getReason() {
        return reason;
    }
 
    public void setReason(int reason) {
        this.reason = reason;
    }
 
    public long getTotalBytes() {
        return totalBytes;
    }
 
    public void setTotalBytes(long totalBytes) {
        this.totalBytes = totalBytes;
    }
 
    public long getCurrentBytes() {
        return currentBytes;
    }
 
    public void setCurrentBytes(long currentBytes) {
        this.currentBytes = currentBytes;
    }
 
    public long getDate() {
        return date;
    }
 
    public void setDate(long date) {
        this.date = date;
    }
 
    public long getId() {
        return id;
    }
 
    public void setId(long id) {
        this.id = id;
    }
}