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

52 lines
730 B
Java
Raw Normal View History

2021-12-24 17:07:57 +08:00
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;
}
}