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

135 lines
2.0 KiB
Java
Raw Normal View History

2020-12-03 21:02:17 +08:00
package config;
import manager.STableManager;
import manager.Table;
import java.util.Map;
@Table(name ="MServerArenaSetting")
public class SMServerArenaSetting implements BaseConfig {
private int id;
private int serverNum;
private int worldLevel;
private int joinRank;
private int[] restTime;
private int[] battleTime;
private int robotNum;
private int[] respectReward;
private int respectNum;
private int[] cost;
private int costMax;
private int[] price;
private int mostTime;
private int[] battleWinReward;
private int[] battleLoseReward;
private int[] fightArea;
2021-07-18 23:57:59 +08:00
private int openWeek;
2021-08-01 01:12:10 +08:00
private int worldLevLimit;
2021-09-10 14:39:31 +08:00
private int[] privId;
private int treasureOpen;
2020-12-03 21:02:17 +08:00
@Override
public void init() throws Exception {
}
public int getId() {
return id;
}
public int getServerNum() {
return serverNum;
}
public int getWorldLevel() {
return worldLevel;
}
public int getJoinRank() {
return joinRank;
}
public int[] getRestTime() {
return restTime;
}
public int[] getBattleTime() {
return battleTime;
}
public int getRobotNum() {
return robotNum;
}
public int[] getRespectReward() {
return respectReward;
}
public int getRespectNum() {
return respectNum;
}
public int[] getCost() {
return cost;
}
public int getCostMax() {
return costMax;
}
public int[] getPrice() {
return price;
}
public int getMostTime() {
return mostTime;
}
public int[] getBattleWinReward() {
return battleWinReward;
}
public int[] getBattleLoseReward() {
return battleLoseReward;
}
public int[] getFightArea() {
return fightArea;
}
2021-07-18 23:57:59 +08:00
public int getOpenWeek() {
return openWeek;
}
2021-08-01 01:12:10 +08:00
public int getWorldLevLimit() {
return worldLevLimit;
}
2021-09-10 14:39:31 +08:00
public int[] getPrivId() {
return privId;
}
public int getTreasureOpen() {
return treasureOpen;
}
2020-12-03 21:02:17 +08:00
}