|
|
|
@ -3,6 +3,7 @@ package com.os.ems.record.domain;
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import com.os.ems.base.domain.EmsBaseMonitorInfo;
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
import com.os.common.annotation.Excel;
|
|
|
|
@ -18,6 +19,18 @@ public class EmsVibrationInstant extends BaseEntity
|
|
|
|
|
{
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
/** 计量设备名称 */
|
|
|
|
|
@Excel(name = "计量设备名称")
|
|
|
|
|
private String monitorName;
|
|
|
|
|
|
|
|
|
|
public String getMonitorName() {
|
|
|
|
|
return monitorName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setMonitorName(String monitorName) {
|
|
|
|
|
this.monitorName = monitorName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 主键标识 */
|
|
|
|
|
private Long objId;
|
|
|
|
|
|
|
|
|
|