| 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 + |
| '}'; |
| } |
| } |