38 lines
530 B
Java
38 lines
530 B
Java
package config;
|
|
|
|
import manager.Table;
|
|
|
|
@Table(name ="BloodyBattleTask")
|
|
public class SBloodyBattleTask implements BaseConfig {
|
|
|
|
private int id;
|
|
|
|
private int taskType;
|
|
|
|
private int[][] taskValue;
|
|
|
|
private int rewardGroup;
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int getTaskType() {
|
|
return taskType;
|
|
}
|
|
|
|
public int[][] getTaskValue() {
|
|
return taskValue;
|
|
}
|
|
|
|
public int getRewardGroup() {
|
|
return rewardGroup;
|
|
}
|
|
|
|
|
|
} |