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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
package com.fgkj.dto.ram;
 
import java.io.Serializable;
import java.util.Date;
 
import com.fgkj.dto.Page;
 
public class Bts_station_state implements Serializable{
    private int num;
    private String station_id;
    private int dev_id;
    private Date  record_datetime;
    private int station_stat;
    
    private int station_stat_poff;
    private Date station_poff_start_time;
    private int station_poff_tlong;
    
    private int  station_stat_fadian;
    private Date station_fadian_start_time;
    private int station_fadian_tlong;
    
    private int station_stat_diaozhan;
    private Date station_diaozhan_start_time;
    private int station_diaozhan_tlong;
    private float station_temp;
    private float station_damp;
    
    private int station_stat_dooropen;
    private Date station_dooropen_start_time;
    private int station_dooropen_tlong;
    
    private int station_stat_xuhang;
    private Date station_xuhang_start_time;
    private Date station_xuhang_end_time;
    private int station_xuhang_tlong;
    
    private String note;
    private String stationName;
    private String stationName1;
    private String stationName2;
    private String stationName3;
    private String stationName5;
    private Page page;
    
    
    /*public Bts_station_state() {
        super();
        station_stat_poff=0;
        station_stat_fadian=0;
        station_stat_diaozhan=0;
        station_stat_dooropen=0;
    }*/
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    
    public String getStation_id() {
        return station_id;
    }
    public void setStation_id(String 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_stat() {
        return station_stat;
    }
    public void setStation_stat(int station_stat) {
        this.station_stat = station_stat;
    }
    public Date getStation_poff_start_time() {
        return station_poff_start_time;
    }
    public void setStation_poff_start_time(Date station_poff_start_time) {
        this.station_poff_start_time = station_poff_start_time;
    }
    public int getStation_poff_tlong() {
        return station_poff_tlong;
    }
    public void setStation_poff_tlong(int station_poff_tlong) {
        this.station_poff_tlong = station_poff_tlong;
    }
    public Date getStation_fadian_start_time() {
        return station_fadian_start_time;
    }
    public void setStation_fadian_start_time(Date station_fadian_start_time) {
        this.station_fadian_start_time = station_fadian_start_time;
    }
    public int getStation_fadian_tlong() {
        return station_fadian_tlong;
    }
    public void setStation_fadian_tlong(int station_fadian_tlong) {
        this.station_fadian_tlong = station_fadian_tlong;
    }
    public Date getStation_diaozhan_start_time() {
        return station_diaozhan_start_time;
    }
    public void setStation_diaozhan_start_time(Date station_diaozhan_start_time) {
        this.station_diaozhan_start_time = station_diaozhan_start_time;
    }
    public int getStation_diaozhan_tlong() {
        return station_diaozhan_tlong;
    }
    public void setStation_diaozhan_tlong(int station_diaozhan_tlong) {
        this.station_diaozhan_tlong = station_diaozhan_tlong;
    }
    public float getStation_temp() {
        return station_temp;
    }
    public void setStation_temp(float station_temp) {
        this.station_temp = station_temp;
    }
    public float getStation_damp() {
        return station_damp;
    }
    public void setStation_damp(float station_damp) {
        this.station_damp = station_damp;
    }
    public Date getStation_dooropen_start_time() {
        return station_dooropen_start_time;
    }
    public void setStation_dooropen_start_time(Date station_dooropen_start_time) {
        this.station_dooropen_start_time = station_dooropen_start_time;
    }
    public int getStation_dooropen_tlong() {
        return station_dooropen_tlong;
    }
    public void setStation_dooropen_tlong(int station_dooropen_tlong) {
        this.station_dooropen_tlong = station_dooropen_tlong;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    public Page getPage() {
        return page;
    }
    public void setPage(Page page) {
        this.page = page;
    }
    public String getStationName() {
        return stationName;
    }
    public void setStationName(String stationName) {
        this.stationName = stationName;
    }
    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 getStationName3() {
        return stationName3;
    }
    public void setStationName3(String stationName3) {
        this.stationName3 = stationName3;
    }
    public int getStation_stat_poff() {
        return station_stat_poff;
    }
    public void setStation_stat_poff(int station_stat_poff) {
        this.station_stat_poff = station_stat_poff;
    }
    public int getStation_stat_fadian() {
        return station_stat_fadian;
    }
    public void setStation_stat_fadian(int station_stat_fadian) {
        this.station_stat_fadian = station_stat_fadian;
    }
    public int getStation_stat_diaozhan() {
        return station_stat_diaozhan;
    }
    public void setStation_stat_diaozhan(int station_stat_diaozhan) {
        this.station_stat_diaozhan = station_stat_diaozhan;
    }
    public int getStation_stat_dooropen() {
        return station_stat_dooropen;
    }
    public void setStation_stat_dooropen(int station_stat_dooropen) {
        this.station_stat_dooropen = station_stat_dooropen;
    }
    public int getStation_stat_xuhang() {
        return station_stat_xuhang;
    }
    public void setStation_stat_xuhang(int station_stat_xuhang) {
        this.station_stat_xuhang = station_stat_xuhang;
    }
    public Date getStation_xuhang_start_time() {
        return station_xuhang_start_time;
    }
    public void setStation_xuhang_start_time(Date station_xuhang_start_time) {
        this.station_xuhang_start_time = station_xuhang_start_time;
    }
    
    public Date getStation_xuhang_end_time() {
        return station_xuhang_end_time;
    }
    public void setStation_xuhang_end_time(Date station_xuhang_end_time) {
        this.station_xuhang_end_time = station_xuhang_end_time;
    }
    public int getStation_xuhang_tlong() {
        return station_xuhang_tlong;
    }
    public void setStation_xuhang_tlong(int station_xuhang_tlong) {
        this.station_xuhang_tlong = station_xuhang_tlong;
    }
    public String getStationName5() {
        return stationName5;
    }
    public void setStationName5(String stationName5) {
        this.stationName5 = stationName5;
    }
    @Override
    public String toString() {
        return "Bts_station_state [num=" + num + ", station_id=" + station_id
                + ", dev_id=" + dev_id + ", record_datetime=" + record_datetime
                + ", station_stat=" + station_stat + ", station_stat_poff="
                + station_stat_poff + ", station_poff_start_time="
                + station_poff_start_time + ", station_poff_tlong="
                + station_poff_tlong + ", station_stat_fadian="
                + station_stat_fadian + ", station_fadian_start_time="
                + station_fadian_start_time + ", station_fadian_tlong="
                + station_fadian_tlong + ", station_stat_diaozhan="
                + station_stat_diaozhan + ", station_diaozhan_start_time="
                + station_diaozhan_start_time + ", station_diaozhan_tlong="
                + station_diaozhan_tlong + ", station_temp=" + station_temp
                + ", station_damp=" + station_damp + ", station_stat_dooropen="
                + station_stat_dooropen + ", station_dooropen_start_time="
                + station_dooropen_start_time + ", station_dooropen_tlong="
                + station_dooropen_tlong + ", station_stat_xuhang="
                + station_stat_xuhang + ", station_xuhang_start_time="
                + station_xuhang_start_time + ", station_xuhang_end_time="
                + station_xuhang_end_time + ", station_xuhang_tlong="
                + station_xuhang_tlong + ", note=" + note + ", stationName="
                + stationName + ", stationName1=" + stationName1
                + ", stationName2=" + stationName2 + ", stationName3="
                + stationName3 + ", stationName5=" + stationName5 + ", page="
                + page + "]";
    }
    
    
    
    
    
    
}