81041
2018-10-11 b45beab4bd9fd91bf583b57d48edf2e99584ec62
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
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 int station_id;
    private int dev_id;
    private Date  record_datetime;
    private int station_stat;
    private Date station_poff_start_time;
    private int station_poff_tlong;
    private Date station_fadian_start_time;
    private int station_fadian_tlong;
    private Date station_diaozhan_start_time;
    private int station_diaozhan_tlong;
    private float station_temp;
    private float station_damp;
    private Date station_dooropen_start_time;
    private int station_dooropen_tlong;
    private String note;
    private 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_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;
    }
    @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_poff_start_time=" + station_poff_start_time
                + ", station_poff_tlong=" + station_poff_tlong
                + ", station_fadian_start_time=" + station_fadian_start_time
                + ", station_fadian_tlong=" + station_fadian_tlong
                + ", station_diaozhan_start_time="
                + station_diaozhan_start_time + ", station_diaozhan_tlong="
                + station_diaozhan_tlong + ", station_temp=" + station_temp
                + ", station_damp=" + station_damp
                + ", station_dooropen_start_time="
                + station_dooropen_start_time + ", station_dooropen_tlong="
                + station_dooropen_tlong + ", note=" + note + ", page=" + page
                + "]";
    }
    
    
}