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
package com.fgkj.dto;
 
import java.io.Serializable;
import java.util.Date;
 
public class BattPower_off implements Serializable{
    private Integer num;
    private Integer dev_id ;
    private Integer record_count;
    private Date  poweroff_starttime;
    private Date  poweroff_stoptime;
    private Integer timelong;
    private Integer power_state;
    private String note;
    
    private String StationName;
    private String StationName1;
    private String StationName2;
    private String StationName5;
    
    public BattPower_off() {
        super();
    }
    public Integer getNum() {
        return num;
    }
    public void setNum(Integer num) {
        this.num = num;
    }
    public Integer getDev_id() {
        return dev_id;
    }
    public void setDev_id(Integer dev_id) {
        this.dev_id = dev_id;
    }
    
    public Integer getRecord_count() {
        return record_count;
    }
    public void setRecord_count(Integer record_count) {
        this.record_count = record_count;
    }
    public Date getPoweroff_starttime() {
        return poweroff_starttime;
    }
    public void setPoweroff_starttime(Date poweroff_starttime) {
        this.poweroff_starttime = poweroff_starttime;
    }
    public Date getPoweroff_stoptime() {
        return poweroff_stoptime;
    }
    public void setPoweroff_stoptime(Date poweroff_stoptime) {
        this.poweroff_stoptime = poweroff_stoptime;
    }
    public Integer getTimelong() {
        return timelong;
    }
    public void setTimelong(Integer timelong) {
        this.timelong = timelong;
    }
    
    public Integer getPower_state() {
        return power_state;
    }
    public void setPower_state(Integer power_state) {
        this.power_state = power_state;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    
    public String getStationName() {
        return StationName;
    }
    public void setStationName(String stationName) {
        StationName = stationName;
    }
    public String getStationName1() {
        return StationName1;
    }
    public void setStationName1(String stationName1) {
        StationName1 = stationName1;
    }
    public String getStationName2() {
        return StationName2;
    }
    public void setStationName2(String stationName2) {
        StationName2 = stationName2;
    }
    public String getStationName5() {
        return StationName5;
    }
    public void setStationName5(String stationName5) {
        StationName5 = stationName5;
    }
    @Override
    public String toString() {
        return "BattPower_off [num=" + num + ", dev_id=" + dev_id
                + ", record_count=" + record_count + ", poweroff_starttime="
                + poweroff_starttime + ", poweroff_stoptime="
                + poweroff_stoptime + ", timelong=" + timelong
                + ", power_state=" + power_state + ", note=" + note
                + ", StationName=" + StationName + ", StationName1="
                + StationName1 + ", StationName2=" + StationName2
                + ", StationName5=" + StationName5 + "]";
    }
    
    
}