34 lines
435 B
Java
34 lines
435 B
Java
package config;
|
|
|
|
import manager.Table;
|
|
|
|
@Table(name ="RidingSwardResult")
|
|
public class SRidingSwardResult implements BaseConfig {
|
|
|
|
private int id;
|
|
|
|
private int[][] result;
|
|
|
|
private int rate;
|
|
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int[][] getResult() {
|
|
return result;
|
|
}
|
|
|
|
public int getRate() {
|
|
return rate;
|
|
}
|
|
|
|
|
|
} |