blob: f4dab6ecdabcaee638a6eb64767d6c2c229e8629 [file] [log] [blame]
刘嘉昕b1f0d712025-06-02 17:13:06 +08001package com.pt5.pthouduan.entity;
2
3// 实体类:ShowInfo.java
4public class ShowInfo {
5 private Long torrentid;
6 private Boolean isMainland;
7 private String genre;
8 private String format;
9
10 // Getters and Setters
11 // Getters
12 public Long getTorrentid() { return torrentid; }
13 public Boolean getIsMainland() { return isMainland; }
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 setIsMainland(Boolean isMainland) { this.isMainland = isMainland; }
20 public void setGenre(String genre) { this.genre = genre; }
21 public void setFormat(String format) { this.format = format; }
22}