53 lines
764 B
Java
53 lines
764 B
Java
package config;
|
|
|
|
import manager.STableManager;
|
|
import manager.Table;
|
|
|
|
import java.util.Map;
|
|
|
|
@Table(name ="DailyChallengeConfig")
|
|
public class SDailyChallengeConfig implements BaseConfig {
|
|
|
|
private int id;
|
|
|
|
private int type;
|
|
|
|
private int[][] openRules;
|
|
|
|
private int[] reward;
|
|
|
|
private int monsterId;
|
|
|
|
private int[] privilegeId;
|
|
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int getType() {
|
|
return type;
|
|
}
|
|
|
|
public int[][] getOpenRules() {
|
|
return openRules;
|
|
}
|
|
|
|
public int[] getReward() {
|
|
return reward;
|
|
}
|
|
|
|
public int getMonsterId() {
|
|
return monsterId;
|
|
}
|
|
|
|
public int[] getPrivilegeId() {
|
|
return privilegeId;
|
|
}
|
|
} |