字段添加

back_recharge
lvxinran 2019-11-25 11:42:07 +08:00
parent 89122a8afd
commit 0e18ea70da
2 changed files with 11 additions and 0 deletions

View File

@ -41,6 +41,7 @@ public class SGlobalActivity implements BaseConfig {
private int[] openRules;
private int[] foreshow;
@Override
public void init() throws Exception {
@ -136,4 +137,8 @@ public class SGlobalActivity implements BaseConfig {
public int[] getOpenRules() {
return openRules;
}
public int[] getForeshow() {
return foreshow;
}
}

View File

@ -33,6 +33,8 @@ public class SLotterySetting implements BaseConfig {
private int mergePool;
private int[][] tenTimesMustGetBox;
@Override
public void init() throws Exception {
@ -95,4 +97,8 @@ public class SLotterySetting implements BaseConfig {
public int getMergePool() {
return mergePool;
}
public int[][] getTenTimesMustGetBox() {
return tenTimesMustGetBox;
}
}