blob: d834c69ebe57a7419ebe9bb5d7674a8c49393d25 [file] [log] [blame]
package com.pt5.pthouduan.entity;
// 实体类:MusicInfo.java
public class MusicInfo {
private Long torrentid;
private String genre;
private String region;
private String style;
private String format;
// Getters and Setters
// Getters
public Long getTorrentid() { return torrentid; }
public String getGenre() { return genre; }
public String getRegion() { return region; }
public String getStyle() { return style; }
public String getFormat() { return format; }
// Setters
public void setTorrentid(Long torrentid) { this.torrentid = torrentid; }
public void setGenre(String genre) { this.genre = genre; }
public void setRegion(String region) { this.region = region; }
public void setStyle(String style) { this.style = style; }
public void setFormat(String format) { this.format = format; }
}