whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package com.fgkj.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.ibatis.type.Alias;
 
import java.io.Serializable;
import java.util.Date;
@Alias("BtsStateChangeInf")
public class BtsStateChangeInf implements Serializable{
    private int num;
    private int dev_id;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
    private Date record_time;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
    private Date record_time1;
    private int last_state;
    private int now_state;
    private int event_type;
    private String note;
    private PageBean pageBean;
    private String stationName;
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    public int getDev_id() {
        return dev_id;
    }
    public void setDev_id(int dev_id) {
        this.dev_id = dev_id;
    }
    public Date getRecord_time() {
        return record_time;
    }
    public void setRecord_time(Date record_time) {
        this.record_time = record_time;
    }
    
    public Date getRecord_time1() {
        return record_time1;
    }
    public void setRecord_time1(Date record_time1) {
        this.record_time1 = record_time1;
    }
    public int getLast_state() {
        return last_state;
    }
    public void setLast_state(int last_state) {
        this.last_state = last_state;
    }
    public int getNow_state() {
        return now_state;
    }
    public void setNow_state(int now_state) {
        this.now_state = now_state;
    }
    public int getEvent_type() {
        return event_type;
    }
    public void setEvent_type(int event_type) {
        this.event_type = event_type;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    public PageBean getPageBean() {
        return pageBean;
    }
    public void setPageBean(PageBean pageBean) {
        this.pageBean = pageBean;
    }
    public String getStationName() {
        return stationName;
    }
    public void setStationName(String stationName) {
        this.stationName = stationName;
    }
    @Override
    public String toString() {
        return "BtsStateChangeInf [num=" + num + ", dev_id=" + dev_id
                + ", record_time=" + record_time + ", record_time1="
                + record_time1 + ", last_state=" + last_state + ", now_state="
                + now_state + ", event_type=" + event_type + ", note=" + note
                + ", page=" + pageBean + ", stationName=" + stationName + "]";
    }
    
    
}