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