61 lines
865 B
Java
61 lines
865 B
Java
package config;
|
|
|
|
import manager.STableManager;
|
|
import manager.Table;
|
|
|
|
import java.util.Map;
|
|
|
|
@Table(name ="SpiritAnimalBook")
|
|
public class SSpiritAnimalBook implements BaseConfig {
|
|
|
|
private int id;
|
|
|
|
private int[][] teamers;
|
|
|
|
private int[][] activePara;
|
|
|
|
private int activeForce;
|
|
|
|
private int fetterType;
|
|
|
|
private int[][] reward;
|
|
|
|
private int openLevel;
|
|
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int[][] getTeamers() {
|
|
return teamers;
|
|
}
|
|
|
|
public int[][] getActivePara() {
|
|
return activePara;
|
|
}
|
|
|
|
public int getActiveForce() {
|
|
return activeForce;
|
|
}
|
|
|
|
public int getFetterType() {
|
|
return fetterType;
|
|
}
|
|
|
|
public int[][] getReward() {
|
|
return reward;
|
|
}
|
|
|
|
public int getOpenLevel() {
|
|
return openLevel;
|
|
}
|
|
|
|
|
|
} |