刘嘉昕 | 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 | |
| 5 | import java.io.Serializable; |
| 6 | |
| 7 | /** |
| 8 | * <p> |
| 9 | * |
| 10 | * </p> |
| 11 | * |
| 12 | * @author ljx |
| 13 | * @since 2025-04-14 |
| 14 | */ |
| 15 | @TableName("marking") |
| 16 | public class Marking implements Serializable { |
| 17 | |
| 18 | private static final long serialVersionUID = 1L; |
| 19 | |
| 20 | private Long torrentid; |
| 21 | |
| 22 | private Long userid; |
| 23 | |
| 24 | private Integer fiveStarReview; |
| 25 | |
| 26 | private String textualEvaluation; |
| 27 | |
| 28 | public Long getTorrentid() { |
| 29 | return torrentid; |
| 30 | } |
| 31 | |
| 32 | public void setTorrentid(Long torrentid) { |
| 33 | this.torrentid = torrentid; |
| 34 | } |
| 35 | |
| 36 | public Long getUserid() { |
| 37 | return userid; |
| 38 | } |
| 39 | |
| 40 | public void setUserid(Long userid) { |
| 41 | this.userid = userid; |
| 42 | } |
| 43 | |
| 44 | public Integer getFiveStarReview() { |
| 45 | return fiveStarReview; |
| 46 | } |
| 47 | |
| 48 | public void setFiveStarReview(Integer fiveStarReview) { |
| 49 | this.fiveStarReview = fiveStarReview; |
| 50 | } |
| 51 | |
| 52 | public String getTextualEvaluation() { |
| 53 | return textualEvaluation; |
| 54 | } |
| 55 | |
| 56 | public void setTextualEvaluation(String textualEvaluation) { |
| 57 | this.textualEvaluation = textualEvaluation; |
| 58 | } |
| 59 | |
| 60 | @Override |
| 61 | public String toString() { |
| 62 | return "Marking{" + |
| 63 | "torrentid = " + torrentid + |
| 64 | ", userid = " + userid + |
| 65 | ", fiveStarReview = " + fiveStarReview + |
| 66 | ", textualEvaluation = " + textualEvaluation + |
| 67 | "}"; |
| 68 | } |
| 69 | } |