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 + "]";
|
}
|
|
|
}
|