package config; import manager.STableManager; import manager.Table; import java.util.Map; @Table(name ="RaceTowerRewardConfig") public class SRaceTowerRewardConfig implements BaseConfig { private int id; private int[] section; private int[][] reward; @Override public void init() throws Exception { } public int getId() { return id; } public int[] getSection() { return section; } public int[][] getReward() { return reward; } }