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 + '\'' +
|
'}';
|
}
|
}
|