白坯业务看板
parent
a52a4eab62
commit
fa04d66dff
@ -0,0 +1,45 @@
|
|||||||
|
package com.op.mes.domain;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
public class EnergyExpend {
|
||||||
|
private String monitorName;
|
||||||
|
private String monitorId;
|
||||||
|
private double expend;
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm")
|
||||||
|
private Date endTime;
|
||||||
|
|
||||||
|
public String getMonitorName() {
|
||||||
|
return monitorName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMonitorName(String monitorName) {
|
||||||
|
this.monitorName = monitorName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMonitorId() {
|
||||||
|
return monitorId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMonitorId(String monitorId) {
|
||||||
|
this.monitorId = monitorId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public double getExpend() {
|
||||||
|
return expend;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setExpend(double expend) {
|
||||||
|
this.expend = expend;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getEndTime() {
|
||||||
|
return endTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEndTime(Date endTime) {
|
||||||
|
this.endTime = endTime;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue