package com.yeshi.fanli.dto.dataoke;
|
|
public class DingDongTime {
|
private String key;
|
private String value;
|
private String time;
|
private int state;//-1 当前时间之前 0:当前时间 1当前时间之后
|
|
|
|
public int getState() {
|
return state;
|
}
|
|
public void setState(int state) {
|
this.state = state;
|
}
|
|
public String getTime() {
|
return time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
public DingDongTime(String key, String value,int state) {
|
this.key = key;
|
this.value = value;
|
this.state= state;
|
}
|
|
public DingDongTime(String key, String value) {
|
this.key = key;
|
this.value = value;
|
}
|
|
public DingDongTime() {
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public String getValue() {
|
return value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
}
|