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
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
package com.fgkj.dto;
 
import org.apache.ibatis.type.Alias;
 
import java.io.Serializable;
import java.util.Date;
 
import com.fasterxml.jackson.annotation.JsonFormat;
 
@Alias("BattPower_off")
public class BattPower_off implements Serializable {
    private Integer num;
    private Integer dev_id;
    private Integer record_count;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai")
    private Date poweroff_starttime;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Shanghai")
    private Date poweroff_stoptime;
    private Integer timelong;
    private Integer power_state;
    private String note;
 
    private String stationName;
    private String stationName1;
 
    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) {
        this.stationName = stationName;
    }
 
    public String getStationName1() {
        return stationName1;
    }
 
    public void setStationName1(String stationName1) {
        this.stationName1 = stationName1;
    }
 
    @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 + '\'' +
                '}';
    }
}