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

70 lines
1.1 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;
@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;
}
}