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

83 lines
1.2 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-03-02 17:54:24 +08:00
/**
*
*/
private int canRepeat;
/**
* id0
*/
private int heroId;
private int[][] skillModify;
2021-08-31 11:56:33 +08:00
@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;
}
public int getType() {
return type;
}
public int getEffect() {
return effect;
}
2021-02-25 10:34:05 +08:00
public int getHeroId() {
return heroId;
}
2021-03-02 17:54:24 +08:00
public int[][] getSkillModify() {
2021-03-02 17:54:24 +08:00
return skillModify;
}
}