2025-02-13 07:47:37 +00:00

65 lines
1.3 KiB
Java

package cn.montaro.aria2.bean;
public class GlobalStat {
private Long downloadSpeed;
private Integer numActive;
private Integer numStopped;
private Integer numStoppedTotal;
private Integer numWaiting;
private Integer uploadSpeed;
public Integer getUploadSpeed() {
return uploadSpeed;
}
public void setUploadSpeed(Integer uploadSpeed) {
this.uploadSpeed = uploadSpeed;
}
public Integer getNumWaiting() {
return numWaiting;
}
public void setNumWaiting(Integer numWaiting) {
this.numWaiting = numWaiting;
}
public Integer getNumStoppedTotal() {
return numStoppedTotal;
}
public void setNumStoppedTotal(Integer numStoppedTotal) {
this.numStoppedTotal = numStoppedTotal;
}
public Integer getNumStopped() {
return numStopped;
}
public void setNumStopped(Integer numStopped) {
this.numStopped = numStopped;
}
public Integer getNumActive() {
return numActive;
}
public void setNumActive(Integer numActive) {
this.numActive = numActive;
}
public Long getDownloadSpeed() {
return downloadSpeed;
}
public void setDownloadSpeed(Long downloadSpeed) {
this.downloadSpeed = downloadSpeed;
}
}