举报相关上传
Change-Id: I3c13243a1442cc4ed00844d1a554f24f7313d8bb
diff --git a/src/main/java/com/pt5/pthouduan/entity/Complain.java b/src/main/java/com/pt5/pthouduan/entity/Complain.java
new file mode 100644
index 0000000..6a57648
--- /dev/null
+++ b/src/main/java/com/pt5/pthouduan/entity/Complain.java
@@ -0,0 +1,82 @@
+package com.pt5.pthouduan.entity;
+
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import java.io.Serializable;
+
+/**
+ * <p>
+ * 投诉记录实体类
+ * </p>
+ *
+ * @author ym
+ * @since 2025-04-14
+ */
+@TableName("complain")
+public class Complain implements Serializable {
+
+ private static final long serialVersionUID = 1L;
+
+ @TableId("complainid")
+ private Integer complainid;
+
+ private Long puse;
+
+ private Long duser;
+
+ private String content;
+
+ private Long torrentid;
+
+ public Integer getComplainid() {
+ return complainid;
+ }
+
+ public void setComplainid(Integer complainid) {
+ this.complainid = complainid;
+ }
+
+ public Long getPuse() {
+ return puse;
+ }
+
+ public void setPuse(Long puse) {
+ this.puse = puse;
+ }
+
+ public Long getDuser() {
+ return duser;
+ }
+
+ public void setDuser(Long duser) {
+ this.duser = duser;
+ }
+
+ public String getContent() {
+ return content;
+ }
+
+ public void setContent(String content) {
+ this.content = content;
+ }
+
+ public Long getTorrentid() {
+ return torrentid;
+ }
+
+ public void setTorrentid(Long torrentid) {
+ this.torrentid = torrentid;
+ }
+
+ @Override
+ public String toString() {
+ return "Complain{" +
+ "complainid=" + complainid +
+ ", puse=" + puse +
+ ", duser=" + duser +
+ ", content='" + content + '\'' +
+ ", torrentid=" + torrentid +
+ '}';
+ }
+}