blob: aceaab01bb979490f8d5d2aba4288b4d769d444c [file] [log] [blame]
刘嘉昕b1f0d712025-06-02 17:13:06 +08001package com.pt5.pthouduan.entity;
2
3// 实体类:GameInfo.java
4public class GameInfo {
5 private Long torrentid;
6 private String platform;
7 private String genre;
8 private String format;
9 private String language;
10
11 // Getters and Setters
12 // Getters
13 public Long getTorrentid() { return torrentid; }
14 public String getPlatform() { return platform; }
15 public String getGenre() { return genre; }
16 public String getFormat() { return format; }
17 public String getLanguage() { return language; }
18
19 // Setters
20 public void setTorrentid(Long torrentid) { this.torrentid = torrentid; }
21 public void setPlatform(String platform) { this.platform = platform; }
22 public void setGenre(String genre) { this.genre = genre; }
23 public void setFormat(String format) { this.format = format; }
24 public void setLanguage(String language) { this.language = language; }
25}