67 lines
925 B
Java
67 lines
925 B
Java
|
package config;
|
||
|
|
||
|
import manager.STableManager;
|
||
|
import manager.Table;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
@Table(name ="RidingSwardConfig")
|
||
|
public class SRidingSwardConfig implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int joinCount;
|
||
|
|
||
|
private int[] joinCost;
|
||
|
|
||
|
private int[] maxRaiseNum;
|
||
|
|
||
|
private int winRate;
|
||
|
|
||
|
private int loseRate;
|
||
|
|
||
|
private int[] rateList;
|
||
|
|
||
|
private int[] time;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int getJoinCount() {
|
||
|
return joinCount;
|
||
|
}
|
||
|
|
||
|
public int[] getJoinCost() {
|
||
|
return joinCost;
|
||
|
}
|
||
|
|
||
|
public int[] getMaxRaiseNum() {
|
||
|
return maxRaiseNum;
|
||
|
}
|
||
|
|
||
|
public int getWinRate() {
|
||
|
return winRate;
|
||
|
}
|
||
|
|
||
|
public int getLoseRate() {
|
||
|
return loseRate;
|
||
|
}
|
||
|
|
||
|
public int[] getRateList() {
|
||
|
return rateList;
|
||
|
}
|
||
|
|
||
|
public int[] getTime() {
|
||
|
return time;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|