package com.hanju.video.app.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;
|
}
|
}
|