| package com.pt5.pthouduan.entity; |
| |
| public class TvInfo { |
| private Long torrentId; // 注意:变量名与之前风格保持一致,但 setTorrentId 方法可能不同 |
| private String region; |
| private String format; |
| private String genre; |
| |
| // Getters |
| public Long getTorrentId() { |
| return torrentId; |
| } |
| |
| public String getRegion() { |
| return region; |
| } |
| |
| public String getFormat() { |
| return format; |
| } |
| |
| public String getGenre() { |
| return genre; |
| } |
| |
| // Setters |
| public void setTorrentId(Long torrentId) { |
| this.torrentId = torrentId; |
| } |
| |
| public void setRegion(String region) { |
| this.region = region; |
| } |
| |
| public void setFormat(String format) { |
| this.format = format; |
| } |
| |
| public void setGenre(String genre) { |
| this.genre = genre; |
| } |
| } |