ym923 | 2c16516 | 2025-06-06 17:54:39 +0800 | [diff] [blame^] | 1 | package com.pt5.pthouduan.entity; |
| 2 | |
| 3 | import com.baomidou.mybatisplus.annotation.TableId; |
| 4 | import com.baomidou.mybatisplus.annotation.TableName; |
| 5 | |
| 6 | import java.io.Serializable; |
| 7 | |
| 8 | /** |
| 9 | * <p> |
| 10 | * 投诉记录实体类 |
| 11 | * </p> |
| 12 | * |
| 13 | * @author ym |
| 14 | * @since 2025-04-14 |
| 15 | */ |
| 16 | @TableName("complain") |
| 17 | public class Complain implements Serializable { |
| 18 | |
| 19 | private static final long serialVersionUID = 1L; |
| 20 | |
| 21 | @TableId("complainid") |
| 22 | private Integer complainid; |
| 23 | |
| 24 | private Long puse; |
| 25 | |
| 26 | private Long duser; |
| 27 | |
| 28 | private String content; |
| 29 | |
| 30 | private Long torrentid; |
| 31 | |
| 32 | public Integer getComplainid() { |
| 33 | return complainid; |
| 34 | } |
| 35 | |
| 36 | public void setComplainid(Integer complainid) { |
| 37 | this.complainid = complainid; |
| 38 | } |
| 39 | |
| 40 | public Long getPuse() { |
| 41 | return puse; |
| 42 | } |
| 43 | |
| 44 | public void setPuse(Long puse) { |
| 45 | this.puse = puse; |
| 46 | } |
| 47 | |
| 48 | public Long getDuser() { |
| 49 | return duser; |
| 50 | } |
| 51 | |
| 52 | public void setDuser(Long duser) { |
| 53 | this.duser = duser; |
| 54 | } |
| 55 | |
| 56 | public String getContent() { |
| 57 | return content; |
| 58 | } |
| 59 | |
| 60 | public void setContent(String content) { |
| 61 | this.content = content; |
| 62 | } |
| 63 | |
| 64 | public Long getTorrentid() { |
| 65 | return torrentid; |
| 66 | } |
| 67 | |
| 68 | public void setTorrentid(Long torrentid) { |
| 69 | this.torrentid = torrentid; |
| 70 | } |
| 71 | |
| 72 | @Override |
| 73 | public String toString() { |
| 74 | return "Complain{" + |
| 75 | "complainid=" + complainid + |
| 76 | ", puse=" + puse + |
| 77 | ", duser=" + duser + |
| 78 | ", content='" + content + '\'' + |
| 79 | ", torrentid=" + torrentid + |
| 80 | '}'; |
| 81 | } |
| 82 | } |