添加了一些实体类
Change-Id: I3f55ee3dae9747b980513069ed0575179453e850
diff --git a/src/main/java/com/pt5/pthouduan/entity/ShowInfo.java b/src/main/java/com/pt5/pthouduan/entity/ShowInfo.java
new file mode 100644
index 0000000..f4dab6e
--- /dev/null
+++ b/src/main/java/com/pt5/pthouduan/entity/ShowInfo.java
@@ -0,0 +1,22 @@
+package com.pt5.pthouduan.entity;
+
+// 实体类:ShowInfo.java
+public class ShowInfo {
+ private Long torrentid;
+ private Boolean isMainland;
+ private String genre;
+ private String format;
+
+ // Getters and Setters
+ // Getters
+ public Long getTorrentid() { return torrentid; }
+ public Boolean getIsMainland() { return isMainland; }
+ public String getGenre() { return genre; }
+ public String getFormat() { return format; }
+
+ // Setters
+ public void setTorrentid(Long torrentid) { this.torrentid = torrentid; }
+ public void setIsMainland(Boolean isMainland) { this.isMainland = isMainland; }
+ public void setGenre(String genre) { this.genre = genre; }
+ public void setFormat(String format) { this.format = format; }
+}
\ No newline at end of file