49 lines
690 B
Java
49 lines
690 B
Java
|
package config;
|
||
|
|
||
|
import manager.STableManager;
|
||
|
import manager.Table;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
@Table(name ="WeekcardRotationConfig")
|
||
|
public class SWeekcardRotationConfig implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int[][] weekcardType;
|
||
|
|
||
|
private int time;
|
||
|
|
||
|
private String startTime;
|
||
|
|
||
|
private String endtime;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int[][] getWeekcardType() {
|
||
|
return weekcardType;
|
||
|
}
|
||
|
|
||
|
public int getTime() {
|
||
|
return time;
|
||
|
}
|
||
|
|
||
|
public String getStartTime() {
|
||
|
return startTime;
|
||
|
}
|
||
|
|
||
|
public String getEndtime() {
|
||
|
return endtime;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|