86 lines
1.4 KiB
Java
86 lines
1.4 KiB
Java
package config;
|
|
|
|
import manager.STableManager;
|
|
import manager.Table;
|
|
|
|
import java.util.Map;
|
|
|
|
@Table(name ="CampTowerSetting")
|
|
public class SCampTowerSetting implements BaseConfig {
|
|
|
|
private int id;
|
|
|
|
private int timesAddPerDay;
|
|
|
|
private int timesStoreMax;
|
|
|
|
private int[][] campOpenDay;
|
|
|
|
private int[][] flashTimesPrice;
|
|
|
|
private int helpFightMax;
|
|
|
|
private int[] helpReward;
|
|
|
|
private int helpMaxTimes;
|
|
|
|
private int[] formation;
|
|
|
|
private int[] selectHeroReward;
|
|
|
|
private String campTowerName;
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int getTimesAddPerDay() {
|
|
return timesAddPerDay;
|
|
}
|
|
|
|
public int getTimesStoreMax() {
|
|
return timesStoreMax;
|
|
}
|
|
|
|
public int[][] getCampOpenDay() {
|
|
return campOpenDay;
|
|
}
|
|
|
|
public int getHelpFightMax() {
|
|
return helpFightMax;
|
|
}
|
|
|
|
public int[] getHelpReward() {
|
|
return helpReward;
|
|
}
|
|
|
|
public int getHelpMaxTimes() {
|
|
return helpMaxTimes;
|
|
}
|
|
|
|
public int[][] getFlashTimesPrice() {
|
|
return flashTimesPrice;
|
|
}
|
|
|
|
public int[] getFormation() {
|
|
return formation;
|
|
}
|
|
|
|
public int[] getSelectHeroReward() {
|
|
return selectHeroReward;
|
|
}
|
|
|
|
public void setSelectHeroReward(int[] selectHeroReward) {
|
|
this.selectHeroReward = selectHeroReward;
|
|
}
|
|
|
|
public String getCampTowerName() {
|
|
return campTowerName;
|
|
}
|
|
} |