刘嘉昕 | f28ea23 | 2025-04-15 16:55:43 +0800 | [diff] [blame^] | 1 | package com.pt5.pthouduan.entity; |
| 2 | |
| 3 | import com.baomidou.mybatisplus.annotation.TableName; |
| 4 | import java.io.Serializable; |
| 5 | |
| 6 | /** |
| 7 | * <p> |
| 8 | * |
| 9 | * </p> |
| 10 | * |
| 11 | * @author ljx |
| 12 | * @since 2025-04-14 |
| 13 | */ |
| 14 | @TableName("resource_audit") |
| 15 | public class ResourceAudit implements Serializable { |
| 16 | |
| 17 | private static final long serialVersionUID = 1L; |
| 18 | |
| 19 | private Long userid; |
| 20 | |
| 21 | private Long torrentid; |
| 22 | |
| 23 | private Integer fiveStarResource; |
| 24 | |
| 25 | public Long getUserid() { |
| 26 | return userid; |
| 27 | } |
| 28 | |
| 29 | public void setUserid(Long userid) { |
| 30 | this.userid = userid; |
| 31 | } |
| 32 | |
| 33 | public Long getTorrentid() { |
| 34 | return torrentid; |
| 35 | } |
| 36 | |
| 37 | public void setTorrentid(Long torrentid) { |
| 38 | this.torrentid = torrentid; |
| 39 | } |
| 40 | |
| 41 | public Integer getFiveStarResource() { |
| 42 | return fiveStarResource; |
| 43 | } |
| 44 | |
| 45 | public void setFiveStarResource(Integer fiveStarResource) { |
| 46 | this.fiveStarResource = fiveStarResource; |
| 47 | } |
| 48 | |
| 49 | @Override |
| 50 | public String toString() { |
| 51 | return "ResourceAudit{" + |
| 52 | "userid = " + userid + |
| 53 | ", torrentid = " + torrentid + |
| 54 | ", fiveStarResource = " + fiveStarResource + |
| 55 | "}"; |
| 56 | } |
| 57 | } |