37 lines
512 B
Java
37 lines
512 B
Java
package config;
|
|
|
|
import manager.STableManager;
|
|
import manager.Table;
|
|
|
|
import java.util.Map;
|
|
|
|
@Table(name ="CompareNumBuild")
|
|
public class SCompareNumBuild implements BaseConfig {
|
|
|
|
private int iD;
|
|
|
|
private int[] checkpointsID;
|
|
|
|
private int[][] formula;
|
|
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
public int getID() {
|
|
return iD;
|
|
}
|
|
|
|
public int[] getCheckpointsID() {
|
|
return checkpointsID;
|
|
}
|
|
|
|
public int[][] getFormula() {
|
|
return formula;
|
|
}
|
|
|
|
|
|
} |