blob: baf94327e60cd6198c23c6c50bac3a6a61807d0f [file] [log] [blame]
package com.pt5.pthouduan.entity;
// 实体类:AnimeInfo.java
public class AnimeInfo {
private Long torrentid;
private String genre;
private String resolution;
private String format;
// Getters and Setters
// Getters
public Long getTorrentid() { return torrentid; }
public String getGenre() { return genre; }
public String getResolution() { return resolution; }
public String getFormat() { return format; }
// Setters
public void setTorrentid(Long torrentid) { this.torrentid = torrentid; }
public void setGenre(String genre) { this.genre = genre; }
public void setResolution(String resolution) { this.resolution = resolution; }
public void setFormat(String format) { this.format = format; }
}