1
81041
2019-06-20 ab3c4acf83f54f8449ca8664c4a2bb79bd30f297
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
package com.fgkj.dto;
 
import java.io.Serializable;
import java.util.Date;
 
import com.fgkj.dao.BaseDAO;
import com.fgkj.dao.CallBack;
 
public class Bts_station_event implements Serializable{
    private int num;
    private int station_id;
    private String stationName;
    private String stationName1;
    private String stationName2;
    private String stationName5;
    private int dev_id;
    private Date record_datetime;   
    private int station_event_type;
    private int station_event_trig;
    private String note;
    
    public Date record_datetime_end;
    public int station_event_type_poff;               //基站停电
    public int station_event_type_xuhang;             //基站续航
    public int station_event_type_fadian;             //基站发电
    public int station_event_type_dooropen;           //基站开门
    public int station_event_type_diaozhan;           //基站掉站
    public int station_event_type_tempup;             //基站温度上限   
    public int station_event_type_templow;            //基站温度下限
    public int station_event_type_dampup;             //基站湿度上限
    public int station_event_type_damplow;            //基站湿度下限
    
    public Page page;
    
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    public int getStation_id() {
        return station_id;
    }
    public void setStation_id(int station_id) {
        this.station_id = station_id;
    }
    public int getDev_id() {
        return dev_id;
    }
    public void setDev_id(int dev_id) {
        this.dev_id = dev_id;
    }
    public Date getRecord_datetime() {
        return record_datetime;
    }
    public void setRecord_datetime(Date record_datetime) {
        this.record_datetime = record_datetime;
    }
    public int getStation_event_type() {
        return station_event_type;
    }
    public void setStation_event_type(int station_event_type) {
        this.station_event_type = station_event_type;
    }
    public int getStation_event_trig() {
        return station_event_trig;
    }
    public void setStation_event_trig(int station_event_trig) {
        this.station_event_trig = station_event_trig;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    
    public Date getRecord_datetime_end() {
        return record_datetime_end;
    }
    public void setRecord_datetime_end(Date record_datetime_end) {
        this.record_datetime_end = record_datetime_end;
    }
    public int getStation_event_type_poff() {
        return station_event_type_poff;
    }
    public void setStation_event_type_poff(int station_event_type_poff) {
        this.station_event_type_poff = station_event_type_poff;
    }
    public int getStation_event_type_xuhang() {
        return station_event_type_xuhang;
    }
    public void setStation_event_type_xuhang(int station_event_type_xuhang) {
        this.station_event_type_xuhang = station_event_type_xuhang;
    }
    public int getStation_event_type_fadian() {
        return station_event_type_fadian;
    }
    public void setStation_event_type_fadian(int station_event_type_fadian) {
        this.station_event_type_fadian = station_event_type_fadian;
    }
    public int getStation_event_type_dooropen() {
        return station_event_type_dooropen;
    }
    public void setStation_event_type_dooropen(int station_event_type_dooropen) {
        this.station_event_type_dooropen = station_event_type_dooropen;
    }
    public int getStation_event_type_diaozhan() {
        return station_event_type_diaozhan;
    }
    public void setStation_event_type_diaozhan(int station_event_type_diaozhan) {
        this.station_event_type_diaozhan = station_event_type_diaozhan;
    }
    public int getStation_event_type_tempup() {
        return station_event_type_tempup;
    }
    public void setStation_event_type_tempup(int station_event_type_tempup) {
        this.station_event_type_tempup = station_event_type_tempup;
    }
    public int getStation_event_type_templow() {
        return station_event_type_templow;
    }
    public void setStation_event_type_templow(int station_event_type_templow) {
        this.station_event_type_templow = station_event_type_templow;
    }
    public int getStation_event_type_dampup() {
        return station_event_type_dampup;
    }
    public void setStation_event_type_dampup(int station_event_type_dampup) {
        this.station_event_type_dampup = station_event_type_dampup;
    }
    public int getStation_event_type_damplow() {
        return station_event_type_damplow;
    }
    public void setStation_event_type_damplow(int station_event_type_damplow) {
        this.station_event_type_damplow = station_event_type_damplow;
    }
    public String getStationName() {
        return stationName;
    }
    public void setStationName(String stationName) {
        this.stationName = stationName;
    }
    public Page getPage() {
        return page;
    }
    public void setPage(Page page) {
        this.page = page;
    }
    public String getStationName1() {
        return stationName1;
    }
    public void setStationName1(String stationName1) {
        this.stationName1 = stationName1;
    }
    public String getStationName2() {
        return stationName2;
    }
    public void setStationName2(String stationName2) {
        this.stationName2 = stationName2;
    }
    public String getStationName5() {
        return stationName5;
    }
    public void setStationName5(String stationName5) {
        this.stationName5 = stationName5;
    }
    @Override
    public String toString() {
        return "Bts_station_event [num=" + num + ", station_id=" + station_id
                + ", stationName=" + stationName + ", stationName1="
                + stationName1 + ", stationName2=" + stationName2
                + ", stationName5=" + stationName5 + ", dev_id=" + dev_id
                + ", record_datetime=" + record_datetime
                + ", station_event_type=" + station_event_type
                + ", station_event_trig=" + station_event_trig + ", note="
                + note + ", record_datetime_end=" + record_datetime_end
                + ", station_event_type_poff=" + station_event_type_poff
                + ", station_event_type_xuhang=" + station_event_type_xuhang
                + ", station_event_type_fadian=" + station_event_type_fadian
                + ", station_event_type_dooropen="
                + station_event_type_dooropen
                + ", station_event_type_diaozhan="
                + station_event_type_diaozhan + ", station_event_type_tempup="
                + station_event_type_tempup + ", station_event_type_templow="
                + station_event_type_templow + ", station_event_type_dampup="
                + station_event_type_dampup + ", station_event_type_damplow="
                + station_event_type_damplow + ", page=" + page + "]";
    }
    
    
    
    
    
    
}