package config; import manager.STableManager; import manager.Table; import java.util.Map; @Table(name ="JewelResonanceConfig") public class SJewelResonanceConfig implements BaseConfig { private int id; private int type; private int level; private int[][] property; @Override public void init() throws Exception { } public int getId() { return id; } public int getType() { return type; } public int getLevel() { return level; } public int[][] getProperty() { return property; } }