admin
2020-02-23 b59fef5c00b15fdfdfa9d4be26e5bf6b41c75458
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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;
    }
}