|
|
@ -23,13 +23,19 @@ public class EmsRecordAlarmData extends BaseEntity
|
|
|
|
/** 计量设备编号 */
|
|
|
|
/** 计量设备编号 */
|
|
|
|
@Excel(name = "计量设备编号")
|
|
|
|
@Excel(name = "计量设备编号")
|
|
|
|
private String monitorId;
|
|
|
|
private String monitorId;
|
|
|
|
private String monitorCode;
|
|
|
|
|
|
|
|
|
|
|
|
/** 计量设备名称 */
|
|
|
|
|
|
|
|
@Excel(name = "计量设备名称")
|
|
|
|
private String monitorName;
|
|
|
|
private String monitorName;
|
|
|
|
|
|
|
|
|
|
|
|
/** 采集设备编号 */
|
|
|
|
/** 采集设备编号 */
|
|
|
|
@Excel(name = "采集设备编号")
|
|
|
|
@Excel(name = "采集设备编号")
|
|
|
|
private String collectDeviceId;
|
|
|
|
private String collectDeviceId;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 采集设备名称 */
|
|
|
|
|
|
|
|
@Excel(name = "采集设备名称")
|
|
|
|
|
|
|
|
private String collectDeviceName;
|
|
|
|
|
|
|
|
|
|
|
|
/** 记录时间 */
|
|
|
|
/** 记录时间 */
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
@Excel(name = "记录时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
@Excel(name = "记录时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
@ -67,7 +73,8 @@ public class EmsRecordAlarmData extends BaseEntity
|
|
|
|
@Excel(name = "通知用户")
|
|
|
|
@Excel(name = "通知用户")
|
|
|
|
private String notifyUser;
|
|
|
|
private String notifyUser;
|
|
|
|
|
|
|
|
|
|
|
|
private String nickName;
|
|
|
|
/** 统一设备名称 */
|
|
|
|
|
|
|
|
private String deviceName;
|
|
|
|
|
|
|
|
|
|
|
|
public String getBeginOperationTime() {
|
|
|
|
public String getBeginOperationTime() {
|
|
|
|
return beginOperationTime;
|
|
|
|
return beginOperationTime;
|
|
|
@ -85,14 +92,6 @@ public class EmsRecordAlarmData extends BaseEntity
|
|
|
|
this.endOperationTime = endOperationTime;
|
|
|
|
this.endOperationTime = endOperationTime;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getMonitorCode() {
|
|
|
|
|
|
|
|
return monitorCode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setMonitorCode(String monitorCode) {
|
|
|
|
|
|
|
|
this.monitorCode = monitorCode;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getMonitorName() {
|
|
|
|
public String getMonitorName() {
|
|
|
|
return monitorName;
|
|
|
|
return monitorName;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -101,12 +100,20 @@ public class EmsRecordAlarmData extends BaseEntity
|
|
|
|
this.monitorName = monitorName;
|
|
|
|
this.monitorName = monitorName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getNickName() {
|
|
|
|
public String getCollectDeviceName() {
|
|
|
|
return nickName;
|
|
|
|
return collectDeviceName;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCollectDeviceName(String collectDeviceName) {
|
|
|
|
|
|
|
|
this.collectDeviceName = collectDeviceName;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getDeviceName() {
|
|
|
|
|
|
|
|
return deviceName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setNickName(String nickName) {
|
|
|
|
public void setDeviceName(String deviceName) {
|
|
|
|
this.nickName = nickName;
|
|
|
|
this.deviceName = deviceName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setObjId(Long objId)
|
|
|
|
public void setObjId(Long objId)
|
|
|
|