blob: 6f6db0a2147ce0dd250fb228da3edf47fa1aaae4 [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("resource_audit")
public class ResourceAudit implements Serializable {
private static final long serialVersionUID = 1L;
private Long userid;
private Long torrentid;
private Integer fiveStarResource;
public Long getUserid() {
return userid;
}
public void setUserid(Long userid) {
this.userid = userid;
}
public Long getTorrentid() {
return torrentid;
}
public void setTorrentid(Long torrentid) {
this.torrentid = torrentid;
}
public Integer getFiveStarResource() {
return fiveStarResource;
}
public void setFiveStarResource(Integer fiveStarResource) {
this.fiveStarResource = fiveStarResource;
}
@Override
public String toString() {
return "ResourceAudit{" +
"userid = " + userid +
", torrentid = " + torrentid +
", fiveStarResource = " + fiveStarResource +
"}";
}
}