blob: 212d5527d3859f12dd6717bd2aafe61d004e0230 [file] [log] [blame]
package com.pt5.pthouduan.entity;
// 实体类:OtherInfo.java
public class OtherInfo {
private Long torrentid;
private String gener;
// Getters and Setters
// Getters
public Long getTorrentid() { return torrentid; }
public String getGenre() { return gener; }
// Setters
public void setTorrentid(Long torrentid) { this.torrentid = torrentid; }
public void setGenre(String genre) { this.gener = genre; }
}