package com.fgkj.dto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class Battalarm_data_history implements Serializable{
|
private Integer num;
|
private Integer BattGroupId;
|
private Integer MonNum;
|
private Long Record_Id;
|
private Integer alm_id;
|
private Integer alm_signal_id;
|
private Integer alm_level;
|
private Date alm_start_time;
|
private Date alm_start_time1;
|
private Date alm_end_time;
|
private Float alm_value;
|
private Integer alm_is_confirmed;
|
private Date alm_confirmed_time;
|
private Integer alm_cleared_type;
|
private Integer usr_Id;
|
|
private String stationid;
|
private String stationname;
|
private String note;
|
public Integer getNum() {
|
return num;
|
}
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
public Integer getBattGroupId() {
|
return BattGroupId;
|
}
|
public void setBattGroupId(Integer battGroupId) {
|
BattGroupId = battGroupId;
|
}
|
public Integer getMonNum() {
|
return MonNum;
|
}
|
public void setMonNum(Integer monNum) {
|
MonNum = monNum;
|
}
|
public Long getRecord_Id() {
|
return Record_Id;
|
}
|
public void setRecord_Id(Long record_Id) {
|
Record_Id = record_Id;
|
}
|
public Integer getAlm_id() {
|
return alm_id;
|
}
|
public void setAlm_id(Integer alm_id) {
|
this.alm_id = alm_id;
|
}
|
public Integer getAlm_signal_id() {
|
return alm_signal_id;
|
}
|
public void setAlm_signal_id(Integer alm_signal_id) {
|
this.alm_signal_id = alm_signal_id;
|
}
|
public Integer getAlm_level() {
|
return alm_level;
|
}
|
public void setAlm_level(Integer alm_level) {
|
this.alm_level = alm_level;
|
}
|
public Date getAlm_start_time() {
|
return alm_start_time;
|
}
|
public void setAlm_start_time(Date alm_start_time) {
|
this.alm_start_time = alm_start_time;
|
}
|
public Date getAlm_start_time1() {
|
return alm_start_time1;
|
}
|
public void setAlm_start_time1(Date alm_start_time1) {
|
this.alm_start_time1 = alm_start_time1;
|
}
|
public Date getAlm_end_time() {
|
return alm_end_time;
|
}
|
public void setAlm_end_time(Date alm_end_time) {
|
this.alm_end_time = alm_end_time;
|
}
|
public Float getAlm_value() {
|
return alm_value;
|
}
|
public void setAlm_value(Float alm_value) {
|
this.alm_value = alm_value;
|
}
|
public Integer getAlm_is_confirmed() {
|
return alm_is_confirmed;
|
}
|
public void setAlm_is_confirmed(Integer alm_is_confirmed) {
|
this.alm_is_confirmed = alm_is_confirmed;
|
}
|
public Date getAlm_confirmed_time() {
|
return alm_confirmed_time;
|
}
|
public void setAlm_confirmed_time(Date alm_confirmed_time) {
|
this.alm_confirmed_time = alm_confirmed_time;
|
}
|
public Integer getAlm_cleared_type() {
|
return alm_cleared_type;
|
}
|
public void setAlm_cleared_type(Integer alm_cleared_type) {
|
this.alm_cleared_type = alm_cleared_type;
|
}
|
public Integer getUsr_Id() {
|
return usr_Id;
|
}
|
public void setUsr_Id(Integer usr_Id) {
|
this.usr_Id = usr_Id;
|
}
|
public String getStationid() {
|
return stationid;
|
}
|
public void setStationid(String stationid) {
|
this.stationid = stationid;
|
}
|
public String getStationname() {
|
return stationname;
|
}
|
public void setStationname(String stationname) {
|
this.stationname = stationname;
|
}
|
public String getNote() {
|
return note;
|
}
|
public void setNote(String note) {
|
this.note = note;
|
}
|
@Override
|
public String toString() {
|
return "Battalarm_data_history [num=" + num + ", BattGroupId="
|
+ BattGroupId + ", MonNum=" + MonNum + ", Record_Id="
|
+ Record_Id + ", alm_id=" + alm_id + ", alm_signal_id="
|
+ alm_signal_id + ", alm_level=" + alm_level
|
+ ", alm_start_time=" + alm_start_time + ", alm_start_time1="
|
+ alm_start_time1 + ", alm_end_time=" + alm_end_time
|
+ ", alm_value=" + alm_value + ", alm_is_confirmed="
|
+ alm_is_confirmed + ", alm_confirmed_time="
|
+ alm_confirmed_time + ", alm_cleared_type=" + alm_cleared_type
|
+ ", usr_Id=" + usr_Id + ", stationid=" + stationid
|
+ ", stationname=" + stationname + ", note=" + note + "]";
|
}
|
|
|
|
}
|