blob: 852bc83b8a86406c3e7616bda59b2fb66188fe7a [file] [log] [blame]
刘嘉昕b1f0d712025-06-02 17:13:06 +08001package com.pt5.pthouduan.entity;
2
3// 实体类:EduInfo.java
4public 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}