package config; import manager.STableManager; import manager.Table; import java.util.Map; @Table(name = "HeroLevelConfig") public class SHeroLevlConfig implements BaseConfig{ public static Map sHeroLevlConfigMap; private int id; private int level; private float characterLevelPara; private float speedLevelPara; private int[][] consume; private int[][] sumConsume; private int[][] rankupReturn; @Override public void init() throws Exception { sHeroLevlConfigMap = STableManager.getConfig(SHeroLevlConfig.class); } public static Map getsCHero() { return sHeroLevlConfigMap; } public int getId() { return id; } public int getLevel() { return level; } public static Map getsHeroLevlConfigMap() { return sHeroLevlConfigMap; } public float getCharacterLevelPara() { return characterLevelPara; } public int[][] getConsume() { return consume; } public int[][] getSumConsume() { return sumConsume; } public float getSpeedLevelPara() { return speedLevelPara; } public int[][] getRankupReturn() { return rankupReturn; } }