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