52 lines
730 B
Java
52 lines
730 B
Java
|
package config;
|
||
|
|
||
|
import manager.STableManager;
|
||
|
import manager.Table;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
@Table(name ="HomeLand")
|
||
|
public class SHomeLand implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int type;
|
||
|
|
||
|
private int lvupCostPool;
|
||
|
|
||
|
private int[] unlockLevel;
|
||
|
|
||
|
private int isOpen;
|
||
|
|
||
|
private int sort;
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int getType() {
|
||
|
return type;
|
||
|
}
|
||
|
|
||
|
public int getLvupCostPool() {
|
||
|
return lvupCostPool;
|
||
|
}
|
||
|
|
||
|
public int[] getUnlockLevel() {
|
||
|
return unlockLevel;
|
||
|
}
|
||
|
|
||
|
public int getIsOpen() {
|
||
|
return isOpen;
|
||
|
}
|
||
|
|
||
|
public int getSort() {
|
||
|
return sort;
|
||
|
}
|
||
|
}
|