package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.util.Date;
|
|
/**
|
* 告警手动消除
|
*/
|
@TableName(schema = "db_alarm",value = "tb_alarm_manual_clear")
|
public class AlarmManualClear {
|
|
private Integer id;
|
|
/**告警记录的主键*/
|
private Integer num;
|
|
private String stationId;
|
private String stationName1;
|
private String stationName2;
|
private String stationName3;
|
private String stationName4;
|
private String stationName5;
|
private Integer alarmType;
|
private Integer battGroupId;
|
private String battGroupName;
|
private Integer monNum;
|
private Integer deviceId;
|
private String deviceName;
|
private Integer powerDeviceId;
|
private Date almStartTime;
|
private Integer almId;
|
private Integer almSignalId;
|
private String reason;
|
private Date createTime;
|
private Integer dealUserId;
|
|
@TableField(exist = false)
|
private String alarmName;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getNum() {
|
return num;
|
}
|
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
|
public String getStationId() {
|
return stationId;
|
}
|
|
public void setStationId(String stationId) {
|
this.stationId = stationId;
|
}
|
|
public Integer getAlarmType() {
|
return alarmType;
|
}
|
|
public void setAlarmType(Integer alarmType) {
|
this.alarmType = alarmType;
|
}
|
|
public Integer getBattGroupId() {
|
return battGroupId;
|
}
|
|
public void setBattGroupId(Integer battGroupId) {
|
this.battGroupId = battGroupId;
|
}
|
|
public Integer getDeviceId() {
|
return deviceId;
|
}
|
|
public void setDeviceId(Integer deviceId) {
|
this.deviceId = deviceId;
|
}
|
|
public Integer getPowerDeviceId() {
|
return powerDeviceId;
|
}
|
|
public void setPowerDeviceId(Integer powerDeviceId) {
|
this.powerDeviceId = powerDeviceId;
|
}
|
|
public Date getAlmStartTime() {
|
return almStartTime;
|
}
|
|
public void setAlmStartTime(Date almStartTime) {
|
this.almStartTime = almStartTime;
|
}
|
|
public Integer getAlmId() {
|
return almId;
|
}
|
|
public void setAlmId(Integer almId) {
|
this.almId = almId;
|
}
|
|
public Integer getAlmSignalId() {
|
return almSignalId;
|
}
|
|
public void setAlmSignalId(Integer almSignalId) {
|
this.almSignalId = almSignalId;
|
}
|
|
public String getReason() {
|
return reason;
|
}
|
|
public void setReason(String reason) {
|
this.reason = reason;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Integer getDealUserId() {
|
return dealUserId;
|
}
|
|
public void setDealUserId(Integer dealUserId) {
|
this.dealUserId = dealUserId;
|
}
|
|
public String getAlarmName() {
|
return alarmName;
|
}
|
|
public void setAlarmName(String alarmName) {
|
this.alarmName = alarmName;
|
}
|
|
public String getStationName1() {
|
return stationName1;
|
}
|
|
public void setStationName1(String stationName1) {
|
this.stationName1 = stationName1;
|
}
|
|
public String getStationName2() {
|
return stationName2;
|
}
|
|
public void setStationName2(String stationName2) {
|
this.stationName2 = stationName2;
|
}
|
|
public String getStationName3() {
|
return stationName3;
|
}
|
|
public void setStationName3(String stationName3) {
|
this.stationName3 = stationName3;
|
}
|
|
public String getStationName4() {
|
return stationName4;
|
}
|
|
public void setStationName4(String stationName4) {
|
this.stationName4 = stationName4;
|
}
|
|
public String getStationName5() {
|
return stationName5;
|
}
|
|
public void setStationName5(String stationName5) {
|
this.stationName5 = stationName5;
|
}
|
|
public String getBattGroupName() {
|
return battGroupName;
|
}
|
|
public void setBattGroupName(String battGroupName) {
|
this.battGroupName = battGroupName;
|
}
|
|
public Integer getMonNum() {
|
return monNum;
|
}
|
|
public void setMonNum(Integer monNum) {
|
this.monNum = monNum;
|
}
|
|
public String getDeviceName() {
|
return deviceName;
|
}
|
|
public void setDeviceName(String deviceName) {
|
this.deviceName = deviceName;
|
}
|
}
|