blob: e549cabd5b52c637905100ac0ae55a9fb295dc12 [file] [log] [blame]
刘嘉昕f28ea232025-04-15 16:55:43 +08001package com.pt5.pthouduan.entity;
2
3import com.baomidou.mybatisplus.annotation.TableName;
4
5import java.io.Serializable;
6
7/**
8 * <p>
9 *
10 * </p>
11 *
12 * @author ljx
13 * @since 2025-04-14
14 */
15@TableName("marking")
16public 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}