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

55 lines
737 B
Java
Raw Normal View History

2022-03-18 11:50:59 +08:00
package config;
import manager.STableManager;
import manager.Table;
import java.util.Map;
@Table(name ="ExploreEvent")
public class SExploreEvent implements BaseConfig {
private int id;
private int type;
private int time;
private int monsterGroup;
private int forceRange;
private int rewardGroup;
@Override
public void init() throws Exception {
}
public int getId() {
return id;
}
public int getType() {
return type;
}
public int getTime() {
return time;
}
public int getMonsterGroup() {
return monsterGroup;
}
public int getForceRange() {
return forceRange;
}
public int getRewardGroup() {
return rewardGroup;
}
}