热度排行榜,表补充

back_recharge
duhui 2022-08-04 16:44:57 +08:00
parent bb16d01442
commit b07a9a1e37
1 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,37 @@
package config;
import manager.STableManager;
import manager.Table;
import java.util.Map;
@Table(name ="HotRanking")
public class SHotRanking implements BaseConfig {
private int id;
private String heroID;
private int open;
@Override
public void init() throws Exception {
}
public int getId() {
return id;
}
public String getHeroID() {
return heroID;
}
public int getOpen() {
return open;
}
}