46 lines
644 B
Java
46 lines
644 B
Java
|
package config;
|
||
|
|
||
|
import manager.Table;
|
||
|
|
||
|
@Table(name ="ActivityRewardPool")
|
||
|
public class SActivityRewardPool implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int poolId;
|
||
|
|
||
|
private int[][] reward;
|
||
|
|
||
|
private int initializeWeight;
|
||
|
|
||
|
private int extractWeight;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int getPoolId() {
|
||
|
return poolId;
|
||
|
}
|
||
|
|
||
|
public int[][] getReward() {
|
||
|
return reward;
|
||
|
}
|
||
|
|
||
|
public int getInitializeWeight() {
|
||
|
return initializeWeight;
|
||
|
}
|
||
|
|
||
|
public int getExtractWeight() {
|
||
|
return extractWeight;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|