blob: e549cabd5b52c637905100ac0ae55a9fb295dc12 [file] [log] [blame]
package com.pt5.pthouduan.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
/**
* <p>
*
* </p>
*
* @author ljx
* @since 2025-04-14
*/
@TableName("marking")
public class Marking implements Serializable {
private static final long serialVersionUID = 1L;
private Long torrentid;
private Long userid;
private Integer fiveStarReview;
private String textualEvaluation;
public Long getTorrentid() {
return torrentid;
}
public void setTorrentid(Long torrentid) {
this.torrentid = torrentid;
}
public Long getUserid() {
return userid;
}
public void setUserid(Long userid) {
this.userid = userid;
}
public Integer getFiveStarReview() {
return fiveStarReview;
}
public void setFiveStarReview(Integer fiveStarReview) {
this.fiveStarReview = fiveStarReview;
}
public String getTextualEvaluation() {
return textualEvaluation;
}
public void setTextualEvaluation(String textualEvaluation) {
this.textualEvaluation = textualEvaluation;
}
@Override
public String toString() {
return "Marking{" +
"torrentid = " + torrentid +
", userid = " + userid +
", fiveStarReview = " + fiveStarReview +
", textualEvaluation = " + textualEvaluation +
"}";
}
}