更改配置

Change-Id: Ibd1cf3c212dffe7952cbaab5e41886a3ebaae613
diff --git a/src/main/java/com/pt5/pthouduan/entity/Marking.java b/src/main/java/com/pt5/pthouduan/entity/Marking.java
new file mode 100644
index 0000000..e549cab
--- /dev/null
+++ b/src/main/java/com/pt5/pthouduan/entity/Marking.java
@@ -0,0 +1,69 @@
+package com.pt5.pthouduan.entity;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import java.io.Serializable;
+
+/**
+ * <p>
+ * 
+ * </p>
+ *
+ * @author ljx
+ * @since 2025-04-14
+ */
+@TableName("marking")
+public class Marking implements Serializable {
+
+    private static final long serialVersionUID = 1L;
+
+    private Long torrentid;
+
+    private Long userid;
+
+    private Integer fiveStarReview;
+
+    private String textualEvaluation;
+
+    public Long getTorrentid() {
+        return torrentid;
+    }
+
+    public void setTorrentid(Long torrentid) {
+        this.torrentid = torrentid;
+    }
+
+    public Long getUserid() {
+        return userid;
+    }
+
+    public void setUserid(Long userid) {
+        this.userid = userid;
+    }
+
+    public Integer getFiveStarReview() {
+        return fiveStarReview;
+    }
+
+    public void setFiveStarReview(Integer fiveStarReview) {
+        this.fiveStarReview = fiveStarReview;
+    }
+
+    public String getTextualEvaluation() {
+        return textualEvaluation;
+    }
+
+    public void setTextualEvaluation(String textualEvaluation) {
+        this.textualEvaluation = textualEvaluation;
+    }
+
+    @Override
+    public String toString() {
+        return "Marking{" +
+        "torrentid = " + torrentid +
+        ", userid = " + userid +
+        ", fiveStarReview = " + fiveStarReview +
+        ", textualEvaluation = " + textualEvaluation +
+        "}";
+    }
+}