48 lines
686 B
Java
48 lines
686 B
Java
package config;
|
|
|
|
import manager.Table;
|
|
|
|
@Table(name ="FoodsConfig")
|
|
public class SFoodsConfig implements BaseConfig {
|
|
|
|
private int id;
|
|
|
|
private int contiue;
|
|
|
|
private int type;
|
|
|
|
private int target;
|
|
|
|
private int[][] effectPara;
|
|
|
|
private int functionType;
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int getContiue() {
|
|
return contiue;
|
|
}
|
|
|
|
public int[][] getEffectPara() {
|
|
return effectPara;
|
|
}
|
|
|
|
public int getType() {
|
|
return type;
|
|
}
|
|
|
|
public int getTarget() {
|
|
return target;
|
|
}
|
|
|
|
public int getFunctionType() {
|
|
return functionType;
|
|
}
|
|
} |