miduo_server/tablemanager/src/main/java/config/SWeekcardRotationConfig.java

49 lines
690 B
Java
Raw Normal View History

2021-11-01 13:18:29 +08:00
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;
}
}