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