| package com.pt5.pthouduan.entity; |
| |
| // 实体类:MovieInfo.java |
| public class MovieInfo { |
| private Long torrentid; |
| private String region; |
| private Integer year; |
| private String genre; |
| private String codecFormat; |
| private String resolution; |
| |
| // Getters and Setters |
| // Getters |
| public Long getTorrentid() { |
| return torrentid; |
| } |
| |
| public String getRegion() { |
| return region; |
| } |
| |
| public Integer getYear() { |
| return year; |
| } |
| |
| public String getGenre() { |
| return genre; |
| } |
| |
| public String getCodecFormat() { |
| return codecFormat; |
| } |
| |
| public String getResolution() { |
| return resolution; |
| } |
| |
| // Setters |
| public void setTorrentid(Long torrentid) { |
| this.torrentid = torrentid; |
| } |
| |
| public void setRegion(String region) { |
| this.region = region; |
| } |
| |
| public void setYear(Integer year) { |
| this.year = year; |
| } |
| |
| public void setGenre(String genre) { |
| this.genre = genre; |
| } |
| |
| public void setCodecFormat(String codecFormat) { |
| this.codecFormat = codecFormat; |
| } |
| |
| public void setResolution(String resolution) { |
| this.resolution = resolution; |
| } |
| } |