2019-09-06 11:04:28 +08:00
|
|
|
package config;
|
|
|
|
|
|
|
|
import manager.Table;
|
|
|
|
|
|
|
|
@Table(name ="LotterySetting")
|
|
|
|
public class SLotterySetting implements BaseConfig {
|
|
|
|
|
|
|
|
private int id;
|
|
|
|
|
|
|
|
private int orderBoxOpenTime;
|
|
|
|
|
|
|
|
private int orderBoxContinue;
|
|
|
|
|
|
|
|
private int orderBoxInterval;
|
|
|
|
|
|
|
|
private int[] orderBoxPool;
|
|
|
|
|
|
|
|
private int diamondBoxInterval;
|
|
|
|
|
|
|
|
private int[][] cost;
|
|
|
|
|
|
|
|
private int getHerosInterval;
|
|
|
|
|
|
|
|
private int[][] diamondBoxContain;
|
|
|
|
|
|
|
|
private int[][] tenTimesMustGetItem;
|
|
|
|
|
|
|
|
private int[] costItem;
|
|
|
|
|
|
|
|
private int perCount;
|
|
|
|
|
|
|
|
private int lotteryType;
|
|
|
|
|
2019-11-22 16:39:54 +08:00
|
|
|
private int mergePool;
|
|
|
|
|
2019-09-06 11:04:28 +08:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void init() throws Exception {
|
2019-10-11 16:32:20 +08:00
|
|
|
|
2019-09-06 11:04:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int getId() {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getOrderBoxOpenTime() {
|
|
|
|
return orderBoxOpenTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getOrderBoxContinue() {
|
|
|
|
return orderBoxContinue;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getOrderBoxInterval() {
|
|
|
|
return orderBoxInterval;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int[] getOrderBoxPool() {
|
|
|
|
return orderBoxPool;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getDiamondBoxInterval() {
|
|
|
|
return diamondBoxInterval;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int[][] getCost() {
|
|
|
|
return cost;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getGetHerosInterval() {
|
|
|
|
return getHerosInterval;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int[][] getDiamondBoxContain() {
|
|
|
|
return diamondBoxContain;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int[][] getTenTimesMustGetItem() {
|
|
|
|
return tenTimesMustGetItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getPerCount() {
|
|
|
|
return perCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int[] getCostItem() {
|
|
|
|
return costItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getLotteryType() {
|
|
|
|
return lotteryType;
|
|
|
|
}
|
2019-11-22 16:39:54 +08:00
|
|
|
|
|
|
|
public int getMergePool() {
|
|
|
|
return mergePool;
|
|
|
|
}
|
2019-09-06 11:04:28 +08:00
|
|
|
}
|