2019-09-06 11:04:28 +08:00
|
|
|
package config;
|
|
|
|
|
|
|
|
import manager.Table;
|
|
|
|
|
|
|
|
@Table(name ="GlobalSystemConfig")
|
|
|
|
public class SGlobalSystemConfig implements BaseConfig {
|
|
|
|
|
|
|
|
private int id;
|
|
|
|
|
|
|
|
private int[] openRules;
|
|
|
|
|
|
|
|
private String systemOpen;
|
|
|
|
|
|
|
|
private String systemEnd;
|
|
|
|
|
|
|
|
private String seasonOpen;
|
|
|
|
|
|
|
|
private String seasonEnd;
|
|
|
|
|
|
|
|
private int seasonInterval;
|
|
|
|
|
|
|
|
|
|
|
|
private long systemOpenLong;
|
|
|
|
|
|
|
|
private long systemEndLong;
|
|
|
|
|
|
|
|
private long seasonOpenLong;
|
|
|
|
|
|
|
|
private long seasonEndLong;
|
|
|
|
|
|
|
|
private int isOpen;
|
|
|
|
|
2019-10-11 16:32:20 +08:00
|
|
|
private int type;
|
2019-09-06 11:04:28 +08:00
|
|
|
|
2019-10-11 16:32:20 +08:00
|
|
|
private int[][] openGifts;
|
2019-09-06 11:04:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void init() throws Exception {
|
2019-10-11 16:32:20 +08:00
|
|
|
|
2019-09-06 11:04:28 +08:00
|
|
|
}
|
|
|
|
|
2019-10-11 16:32:20 +08:00
|
|
|
|
2019-09-06 11:04:28 +08:00
|
|
|
public int getId() {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int[] getOpenRules() {
|
|
|
|
return openRules;
|
|
|
|
}
|
|
|
|
|
2019-10-11 16:32:20 +08:00
|
|
|
public String getSystemOpen() {
|
2019-09-06 11:04:28 +08:00
|
|
|
return systemOpen;
|
|
|
|
}
|
|
|
|
|
2019-10-11 16:32:20 +08:00
|
|
|
public String getSystemEnd() {
|
2019-09-06 11:04:28 +08:00
|
|
|
return systemEnd;
|
|
|
|
}
|
|
|
|
|
2019-10-11 16:32:20 +08:00
|
|
|
public String getSeasonOpen() {
|
2019-09-06 11:04:28 +08:00
|
|
|
return seasonOpen;
|
|
|
|
}
|
|
|
|
|
2019-10-11 16:32:20 +08:00
|
|
|
public String getSeasonEnd() {
|
2019-09-06 11:04:28 +08:00
|
|
|
return seasonEnd;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getSeasonInterval() {
|
|
|
|
return seasonInterval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public long getSystemOpenLong() {
|
|
|
|
return systemOpenLong;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSystemOpenLong(long systemOpenLong) {
|
|
|
|
this.systemOpenLong = systemOpenLong;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long getSystemEndLong() {
|
|
|
|
return systemEndLong;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSystemEndLong(long systemEndLong) {
|
|
|
|
this.systemEndLong = systemEndLong;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long getSeasonOpenLong() {
|
|
|
|
return seasonOpenLong;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSeasonOpenLong(long seasonOpenLong) {
|
|
|
|
this.seasonOpenLong = seasonOpenLong;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long getSeasonEndLong() {
|
|
|
|
return seasonEndLong;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSeasonEndLong(long seasonEndLong) {
|
|
|
|
this.seasonEndLong = seasonEndLong;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getIsOpen() {
|
|
|
|
return isOpen;
|
|
|
|
}
|
2019-10-11 16:32:20 +08:00
|
|
|
|
|
|
|
public int getType() {
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int[][] getOpenGifts() {
|
|
|
|
return openGifts;
|
|
|
|
}
|
2019-09-06 11:04:28 +08:00
|
|
|
}
|