upload功能
Change-Id: Iad725ce3e2edd913531bf11705bf51000dde010d
diff --git a/src/main/java/com/pt5/pthouduan/entity/PeerInfo.java b/src/main/java/com/pt5/pthouduan/entity/PeerInfo.java
new file mode 100644
index 0000000..440d870
--- /dev/null
+++ b/src/main/java/com/pt5/pthouduan/entity/PeerInfo.java
@@ -0,0 +1,109 @@
+package com.pt5.pthouduan.entity;
+
+
+import java.sql.Timestamp;
+import java.time.LocalDateTime;
+
+public class PeerInfo {
+ private String username;
+ private long uploaded;
+ private long uploadSpeed;
+ private long downloaded;
+ private long downloadSpeed;
+ private String lastEvent;
+ private Timestamp lastUpdated;
+ private Timestamp createdAt;
+ private LocalDateTime completedtime;
+ private String client;
+ private int port;
+
+ // Getters and Setters
+ public int getPort() {
+ return port;
+ }
+
+ public void setPort(int port) {
+ this.port = port;
+ }
+
+ public String getUsername() {
+ return username;
+ }
+
+ public void setUsername(String username) {
+ this.username = username;
+ }
+
+ public long getUploaded() {
+ return uploaded;
+ }
+
+ public void setUploaded(long uploaded) {
+ this.uploaded = uploaded;
+ }
+
+ public long getUploadSpeed() {
+ return uploadSpeed;
+ }
+
+ public void setUploadSpeed(long uploadSpeed) {
+ this.uploadSpeed = uploadSpeed;
+ }
+
+ public long getDownloaded() {
+ return downloaded;
+ }
+
+ public void setDownloaded(long downloaded) {
+ this.downloaded = downloaded;
+ }
+
+ public long getDownloadSpeed() {
+ return downloadSpeed;
+ }
+
+ public void setDownloadSpeed(long downloadSpeed) {
+ this.downloadSpeed = downloadSpeed;
+ }
+
+ public String getLastEvent() {
+ return lastEvent;
+ }
+
+ public void setLastEvent(String lastEvent) {
+ this.lastEvent = lastEvent;
+ }
+
+ public Timestamp getLastUpdated() {
+ return lastUpdated;
+ }
+
+ public void setLastUpdated(Timestamp lastUpdated) {
+ this.lastUpdated = lastUpdated;
+ }
+
+ public Timestamp getCreatedAt() {
+ return createdAt;
+ }
+
+ public void setCreatedAt(Timestamp createdAt) {
+ this.createdAt = createdAt;
+ }
+
+ public LocalDateTime getCompleted_time() {
+ return completedtime;
+ }
+
+ public void setCompleted_time(LocalDateTime completed_time) {
+ this.completedtime = completed_time;
+ }
+
+ public String getClient() {
+ return client;
+ }
+
+ public void setClient(String client) {
+ this.client = client;
+ }
+}
+