blob: baf94327e60cd6198c23c6c50bac3a6a61807d0f [file] [log] [blame]
刘嘉昕b1f0d712025-06-02 17:13:06 +08001package com.pt5.pthouduan.entity;
2
3// 实体类:AnimeInfo.java
4public class AnimeInfo {
5 private Long torrentid;
6 private String genre;
7 private String resolution;
8 private String format;
9
10 // Getters and Setters
11 // Getters
12 public Long getTorrentid() { return torrentid; }
13 public String getGenre() { return genre; }
14 public String getResolution() { return resolution; }
15 public String getFormat() { return format; }
16
17 // Setters
18 public void setTorrentid(Long torrentid) { this.torrentid = torrentid; }
19 public void setGenre(String genre) { this.genre = genre; }
20 public void setResolution(String resolution) { this.resolution = resolution; }
21 public void setFormat(String format) { this.format = format; }
22}