|
|
|
@ -95,6 +95,11 @@ public class EmsRecordSteamInstant extends BaseEntity {
|
|
|
|
|
@Excel(name = "记录时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
private Date recordTime;
|
|
|
|
|
|
|
|
|
|
/* *//**
|
|
|
|
|
* 时间段内的消耗计算量
|
|
|
|
|
*//*
|
|
|
|
|
private BigDecimal expendSunm;*/
|
|
|
|
|
|
|
|
|
|
public String getMonitorName() {
|
|
|
|
|
return monitorName;
|
|
|
|
|
}
|
|
|
|
@ -199,6 +204,16 @@ public class EmsRecordSteamInstant extends BaseEntity {
|
|
|
|
|
return recordTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
public BigDecimal getExpendSunm() {
|
|
|
|
|
return expendSunm;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setExpendSunm(BigDecimal expendSunm) {
|
|
|
|
|
this.expendSunm = expendSunm;
|
|
|
|
|
}
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
@ -214,6 +229,7 @@ public class EmsRecordSteamInstant extends BaseEntity {
|
|
|
|
|
.append("density", getDensity())
|
|
|
|
|
.append("differencePress", getDifferencePress())
|
|
|
|
|
.append("recordTime", getRecordTime())
|
|
|
|
|
/* .append("expendSunm", getExpendSunm())*/
|
|
|
|
|
.toString();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|