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