2019-12-06 20:25:52 +08:00
|
|
|
package config;
|
|
|
|
|
|
|
|
import manager.STableManager;
|
|
|
|
import manager.Table;
|
|
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
@Table(name ="ChampionshipReward")
|
|
|
|
public class SChampionshipReward implements BaseConfig {
|
|
|
|
|
|
|
|
private int id;
|
|
|
|
|
|
|
|
private int minRank;
|
|
|
|
|
|
|
|
private int maxRank;
|
|
|
|
|
|
|
|
private int[][] seasonReward;
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void init() throws Exception {
|
2019-12-12 18:32:54 +08:00
|
|
|
|
2019-12-06 20:25:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int getId() {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getMinRank() {
|
|
|
|
return minRank;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getMaxRank() {
|
|
|
|
return maxRank;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int[][] getSeasonReward() {
|
|
|
|
return seasonReward;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|