23 lines
341 B
Java
23 lines
341 B
Java
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;
|
|
}
|
|
} |