添加对应mapper
Change-Id: I117bbbb0bd4ea2fd1f716ed3d8ca21cb5b4abb03
diff --git a/src/main/java/com/pt5/pthouduan/entity/SoftwareInfo.java b/src/main/java/com/pt5/pthouduan/entity/SoftwareInfo.java
new file mode 100644
index 0000000..caf3666
--- /dev/null
+++ b/src/main/java/com/pt5/pthouduan/entity/SoftwareInfo.java
@@ -0,0 +1,22 @@
+package com.pt5.pthouduan.entity;
+
+// 实体类:SoftwareInfo.java
+public class SoftwareInfo {
+ private Long torrentid;
+ private String platform;
+ private String genre;
+ private String format;
+
+ // Getters and Setters
+ // Getters
+ public Long getTorrentid() { return torrentid; }
+ public String getPlatform() { return platform; }
+ public String getGenre() { return genre; }
+ public String getFormat() { return format; }
+
+ // Setters
+ public void setTorrentid(Long torrentid) { this.torrentid = torrentid; }
+ public void setPlatform(String platform) { this.platform = platform; }
+ public void setGenre(String genre) { this.genre = genre; }
+ public void setFormat(String format) { this.format = format; }
+}
\ No newline at end of file