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

69 lines
1.0 KiB
Java
Raw Normal View History

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;
2021-02-25 10:34:05 +08:00
// 是否可以重复
private int canRepeat;
// 专属英雄id0表示没有
private int heroId;
2021-03-02 17:54:24 +08:00
private int[] skillModify;
@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;
}
2021-02-25 10:34:05 +08:00
public int getCanRepeat() {
return canRepeat;
}
2021-02-25 10:34:05 +08:00
public int getHeroId() {
return heroId;
}
2021-03-02 17:54:24 +08:00
public int[] getSkillModify() {
return skillModify;
}
}