55 lines
747 B
Java
55 lines
747 B
Java
|
package config;
|
||
|
|
||
|
import manager.STableManager;
|
||
|
import manager.Table;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
@Table(name ="ExpeditionHolyConfig")
|
||
|
public class SExpeditionHolyConfig implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int type;
|
||
|
|
||
|
private int effect;
|
||
|
|
||
|
private int weight;
|
||
|
|
||
|
private int passiveSkillId;
|
||
|
|
||
|
private int forceType;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int gettype() {
|
||
|
return type;
|
||
|
}
|
||
|
|
||
|
public int geteffect() {
|
||
|
return effect;
|
||
|
}
|
||
|
|
||
|
public int getWeight() {
|
||
|
return weight;
|
||
|
}
|
||
|
|
||
|
public int getPassiveSkillId() {
|
||
|
return passiveSkillId;
|
||
|
}
|
||
|
|
||
|
public int getForceType() {
|
||
|
return forceType;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|