53 lines
665 B
Java
53 lines
665 B
Java
|
package config;
|
||
|
|
||
|
|
||
|
import manager.Table;
|
||
|
|
||
|
@Table(name ="ExpeditionRecruitConfig")
|
||
|
public class SExpeditionRecruitConfig implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int pool;
|
||
|
|
||
|
private int type;
|
||
|
|
||
|
private int heroId;
|
||
|
|
||
|
private int getHero;
|
||
|
|
||
|
private int weight;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int getPool() {
|
||
|
return pool;
|
||
|
}
|
||
|
|
||
|
public int getType() {
|
||
|
return type;
|
||
|
}
|
||
|
|
||
|
public int getHeroId() {
|
||
|
return heroId;
|
||
|
}
|
||
|
|
||
|
public int getgetHero() {
|
||
|
return getHero;
|
||
|
}
|
||
|
|
||
|
public int getWeight() {
|
||
|
return weight;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|