package config; import manager.Table; @Table(name ="EventPointConfig") public class SEventPointConfig implements BaseConfig { private int id; private int[] option; @Override public void init() throws Exception { } public int getId() { return id; } public int[] getOption() { return option; } }