| package com.pt5.pthouduan.entity; |
| |
| // 实体类:DocumentaryInfo.java |
| public class DocumentaryInfo { |
| private Long torrentid; |
| private Integer year; |
| private String source; |
| private String format; |
| |
| // Getters and Setters |
| // Getters |
| public Long getTorrentid() { return torrentid; } |
| public Integer getYear() { return year; } |
| public String getSource() { return source; } |
| public String getFormat() { return format; } |
| |
| // Setters |
| public void setTorrentid(Long torrentid) { this.torrentid = torrentid; } |
| public void setYear(Integer year) { this.year = year; } |
| public void setSource(String source) { this.source = source; } |
| public void setFormat(String format) { this.format = format; } |
| } |