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

86 lines
1.4 KiB
Java
Raw Normal View History

2020-12-27 19:05:39 +08:00
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;
2021-02-03 10:35:55 +08:00
private int[] selectHeroReward;
2021-03-10 16:09:24 +08:00
private String campTowerName;
2020-12-27 19:05:39 +08:00
@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;
}
2021-02-03 10:35:55 +08:00
public int[] getSelectHeroReward() {
return selectHeroReward;
}
public void setSelectHeroReward(int[] selectHeroReward) {
this.selectHeroReward = selectHeroReward;
}
2021-03-10 16:09:24 +08:00
public String getCampTowerName() {
return campTowerName;
}
2020-12-27 19:05:39 +08:00
}