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

48 lines
686 B
Java
Raw Normal View History

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;
}
}