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