刘嘉昕 | b1f0d71 | 2025-06-02 17:13:06 +0800 | [diff] [blame] | 1 | package com.pt5.pthouduan.entity; |
| 2 | |
| 3 | // 实体类:MovieInfo.java |
| 4 | public class MovieInfo { |
| 5 | private Long torrentid; |
| 6 | private String region; |
| 7 | private Integer year; |
| 8 | private String genre; |
| 9 | private String codecFormat; |
| 10 | private String resolution; |
| 11 | |
| 12 | // Getters and Setters |
| 13 | // Getters |
| 14 | public Long getTorrentid() { |
| 15 | return torrentid; |
| 16 | } |
| 17 | |
| 18 | public String getRegion() { |
| 19 | return region; |
| 20 | } |
| 21 | |
| 22 | public Integer getYear() { |
| 23 | return year; |
| 24 | } |
| 25 | |
| 26 | public String getGenre() { |
| 27 | return genre; |
| 28 | } |
| 29 | |
| 30 | public String getCodecFormat() { |
| 31 | return codecFormat; |
| 32 | } |
| 33 | |
| 34 | public String getResolution() { |
| 35 | return resolution; |
| 36 | } |
| 37 | |
| 38 | // Setters |
| 39 | public void setTorrentid(Long torrentid) { |
| 40 | this.torrentid = torrentid; |
| 41 | } |
| 42 | |
| 43 | public void setRegion(String region) { |
| 44 | this.region = region; |
| 45 | } |
| 46 | |
| 47 | public void setYear(Integer year) { |
| 48 | this.year = year; |
| 49 | } |
| 50 | |
| 51 | public void setGenre(String genre) { |
| 52 | this.genre = genre; |
| 53 | } |
| 54 | |
| 55 | public void setCodecFormat(String codecFormat) { |
| 56 | this.codecFormat = codecFormat; |
| 57 | } |
| 58 | |
| 59 | public void setResolution(String resolution) { |
| 60 | this.resolution = resolution; |
| 61 | } |
| 62 | } |