更改配置
Change-Id: Ibd1cf3c212dffe7952cbaab5e41886a3ebaae613
diff --git a/src/main/java/com/pt5/pthouduan/entity/ResourceAudit.java b/src/main/java/com/pt5/pthouduan/entity/ResourceAudit.java
new file mode 100644
index 0000000..6f6db0a
--- /dev/null
+++ b/src/main/java/com/pt5/pthouduan/entity/ResourceAudit.java
@@ -0,0 +1,57 @@
+package com.pt5.pthouduan.entity;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import java.io.Serializable;
+
+/**
+ * <p>
+ *
+ * </p>
+ *
+ * @author ljx
+ * @since 2025-04-14
+ */
+@TableName("resource_audit")
+public class ResourceAudit implements Serializable {
+
+ private static final long serialVersionUID = 1L;
+
+ private Long userid;
+
+ private Long torrentid;
+
+ private Integer fiveStarResource;
+
+ public Long getUserid() {
+ return userid;
+ }
+
+ public void setUserid(Long userid) {
+ this.userid = userid;
+ }
+
+ public Long getTorrentid() {
+ return torrentid;
+ }
+
+ public void setTorrentid(Long torrentid) {
+ this.torrentid = torrentid;
+ }
+
+ public Integer getFiveStarResource() {
+ return fiveStarResource;
+ }
+
+ public void setFiveStarResource(Integer fiveStarResource) {
+ this.fiveStarResource = fiveStarResource;
+ }
+
+ @Override
+ public String toString() {
+ return "ResourceAudit{" +
+ "userid = " + userid +
+ ", torrentid = " + torrentid +
+ ", fiveStarResource = " + fiveStarResource +
+ "}";
+ }
+}