刘嘉昕 | b1f0d71 | 2025-06-02 17:13:06 +0800 | [diff] [blame^] | 1 | package com.pt5.pthouduan.entity; |
| 2 | |
| 3 | // 实体类:DocumentaryInfo.java |
| 4 | public class DocumentaryInfo { |
| 5 | private Long torrentid; |
| 6 | private Integer year; |
| 7 | private String source; |
| 8 | private String format; |
| 9 | |
| 10 | // Getters and Setters |
| 11 | // Getters |
| 12 | public Long getTorrentid() { return torrentid; } |
| 13 | public Integer getYear() { return year; } |
| 14 | public String getSource() { return source; } |
| 15 | public String getFormat() { return format; } |
| 16 | |
| 17 | // Setters |
| 18 | public void setTorrentid(Long torrentid) { this.torrentid = torrentid; } |
| 19 | public void setYear(Integer year) { this.year = year; } |
| 20 | public void setSource(String source) { this.source = source; } |
| 21 | public void setFormat(String format) { this.format = format; } |
| 22 | } |