miduo_server/tablemanager/src/main/java/config/SHomeLandLevel.java

71 lines
941 B
Java

package config;
import manager.STableManager;
import manager.Table;
import java.util.Map;
@Table(name ="HomeLandLevel")
public class SHomeLandLevel implements BaseConfig {
private int id;
private int poolID;
private int level;
private int[] rule;
private int[][] cost;
private int[] gain;
private int unlockArea;
private int[][] storage;
private int time;
@Override
public void init() throws Exception {
}
public int getId() {
return id;
}
public int getPoolID() {
return poolID;
}
public int getlevel() {
return level;
}
public int[] getRule() {
return rule;
}
public int[][] getCost() {
return cost;
}
public int[] getGain() {
return gain;
}
public int getUnlockArea() {
return unlockArea;
}
public int[][] getStorage() {
return storage;
}
public int getTime() {
return time;
}
}