54 lines
827 B
Java
54 lines
827 B
Java
package config;
|
|
|
|
import manager.Table;
|
|
|
|
@Table(name = "ChallengeMapConfig")
|
|
public class SChallengeMapConfig implements BaseConfig{
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
}
|
|
|
|
private int mapId;
|
|
|
|
private int missionId;
|
|
|
|
private int[] size;
|
|
|
|
private int refresh;
|
|
|
|
private int ifRank;
|
|
|
|
private int[] position;
|
|
|
|
private int[] sweepingAward;
|
|
|
|
public int getMapId() {
|
|
return mapId;
|
|
}
|
|
|
|
public int getMissionId() {
|
|
return missionId;
|
|
}
|
|
|
|
public int[] getSize() {
|
|
return size;
|
|
}
|
|
|
|
public int getRefresh() {
|
|
return refresh;
|
|
}
|
|
|
|
public int getIfRank() {
|
|
return ifRank;
|
|
}
|
|
|
|
public int[] getSweepingAward() {
|
|
return sweepingAward;
|
|
}
|
|
|
|
public int[] getPosition() {
|
|
return position;
|
|
}
|
|
}
|