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

83 lines
1.2 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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;
/**
* 是否可以重复
*/
private int canRepeat;
/**
* 专属英雄id0表示没有
*/
private int heroId;
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;
}
public int getCanRepeat() {
return canRepeat;
}
public int getType() {
return type;
}
public int getEffect() {
return effect;
}
public int getHeroId() {
return heroId;
}
public int[][] getSkillModify() {
return skillModify;
}
}