|
|
|
@ -61,75 +61,87 @@ public class ScadaEmsDayElectricloss extends BaseEntity
|
|
|
|
|
|
|
|
|
|
private String endRecordDate;
|
|
|
|
|
|
|
|
|
|
public void setUuid(String uuid)
|
|
|
|
|
/** 尖 */
|
|
|
|
|
private Double sharp;
|
|
|
|
|
|
|
|
|
|
/** 峰 */
|
|
|
|
|
private Double peak;
|
|
|
|
|
|
|
|
|
|
/** 平 */
|
|
|
|
|
private Double plain;
|
|
|
|
|
|
|
|
|
|
/** 谷 */
|
|
|
|
|
private Double hollow;
|
|
|
|
|
|
|
|
|
|
public void setUuid(String uuid)
|
|
|
|
|
{
|
|
|
|
|
this.uuid = uuid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getUuid()
|
|
|
|
|
public String getUuid()
|
|
|
|
|
{
|
|
|
|
|
return uuid;
|
|
|
|
|
}
|
|
|
|
|
public void setMonitorId(String monitorId)
|
|
|
|
|
public void setMonitorId(String monitorId)
|
|
|
|
|
{
|
|
|
|
|
this.monitorId = monitorId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getMonitorId()
|
|
|
|
|
public String getMonitorId()
|
|
|
|
|
{
|
|
|
|
|
return monitorId;
|
|
|
|
|
}
|
|
|
|
|
public void setMaxZxyg(Long maxZxyg)
|
|
|
|
|
public void setMaxZxyg(Long maxZxyg)
|
|
|
|
|
{
|
|
|
|
|
this.maxZxyg = maxZxyg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getMaxZxyg()
|
|
|
|
|
public Long getMaxZxyg()
|
|
|
|
|
{
|
|
|
|
|
return maxZxyg;
|
|
|
|
|
}
|
|
|
|
|
public void setMinZxyg(Long minZxyg)
|
|
|
|
|
public void setMinZxyg(Long minZxyg)
|
|
|
|
|
{
|
|
|
|
|
this.minZxyg = minZxyg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getMinZxyg()
|
|
|
|
|
public Long getMinZxyg()
|
|
|
|
|
{
|
|
|
|
|
return minZxyg;
|
|
|
|
|
}
|
|
|
|
|
public void setPt(Long pt)
|
|
|
|
|
public void setPt(Long pt)
|
|
|
|
|
{
|
|
|
|
|
this.pt = pt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getPt()
|
|
|
|
|
public Long getPt()
|
|
|
|
|
{
|
|
|
|
|
return pt;
|
|
|
|
|
}
|
|
|
|
|
public void setCt(Long ct)
|
|
|
|
|
public void setCt(Long ct)
|
|
|
|
|
{
|
|
|
|
|
this.ct = ct;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getCt()
|
|
|
|
|
public Long getCt()
|
|
|
|
|
{
|
|
|
|
|
return ct;
|
|
|
|
|
}
|
|
|
|
|
public void setRecordDate(String recordDate)
|
|
|
|
|
public void setRecordDate(String recordDate)
|
|
|
|
|
{
|
|
|
|
|
this.recordDate = recordDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getRecordDate()
|
|
|
|
|
public String getRecordDate()
|
|
|
|
|
{
|
|
|
|
|
return recordDate;
|
|
|
|
|
}
|
|
|
|
|
public void setCollectTime(Date collectTime)
|
|
|
|
|
public void setCollectTime(Date collectTime)
|
|
|
|
|
{
|
|
|
|
|
this.collectTime = collectTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Date getCollectTime()
|
|
|
|
|
public Date getCollectTime()
|
|
|
|
|
{
|
|
|
|
|
return collectTime;
|
|
|
|
|
}
|
|
|
|
@ -163,4 +175,36 @@ public class ScadaEmsDayElectricloss extends BaseEntity
|
|
|
|
|
.append("collectTime", getCollectTime())
|
|
|
|
|
.toString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Double getSharp() {
|
|
|
|
|
return sharp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setSharp(Double sharp) {
|
|
|
|
|
this.sharp = sharp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Double getPeak() {
|
|
|
|
|
return peak;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPeak(Double peak) {
|
|
|
|
|
this.peak = peak;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Double getPlain() {
|
|
|
|
|
return plain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPlain(Double plain) {
|
|
|
|
|
this.plain = plain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Double getHollow() {
|
|
|
|
|
return hollow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setHollow(Double hollow) {
|
|
|
|
|
this.hollow = hollow;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|