添加了一些实体类

Change-Id: I3f55ee3dae9747b980513069ed0575179453e850
diff --git a/src/main/java/com/pt5/pthouduan/entity/MovieInfo.java b/src/main/java/com/pt5/pthouduan/entity/MovieInfo.java
new file mode 100644
index 0000000..ce89df3
--- /dev/null
+++ b/src/main/java/com/pt5/pthouduan/entity/MovieInfo.java
@@ -0,0 +1,62 @@
+package com.pt5.pthouduan.entity;
+
+// 实体类:MovieInfo.java
+public class MovieInfo {
+    private Long torrentid;
+    private String region;
+    private Integer year;
+    private String genre;
+    private String codecFormat;
+    private String resolution;
+
+    // Getters and Setters
+    // Getters
+    public Long getTorrentid() {
+        return torrentid;
+    }
+
+    public String getRegion() {
+        return region;
+    }
+
+    public Integer getYear() {
+        return year;
+    }
+
+    public String getGenre() {
+        return genre;
+    }
+
+    public String getCodecFormat() {
+        return codecFormat;
+    }
+
+    public String getResolution() {
+        return resolution;
+    }
+
+    // Setters
+    public void setTorrentid(Long torrentid) {
+        this.torrentid = torrentid;
+    }
+
+    public void setRegion(String region) {
+        this.region = region;
+    }
+
+    public void setYear(Integer year) {
+        this.year = year;
+    }
+
+    public void setGenre(String genre) {
+        this.genre = genre;
+    }
+
+    public void setCodecFormat(String codecFormat) {
+        this.codecFormat = codecFormat;
+    }
+
+    public void setResolution(String resolution) {
+        this.resolution = resolution;
+    }
+}