|
|
@ -14,6 +14,7 @@ import java.util.Date;
|
|
|
|
* @author WenJY
|
|
|
|
* @author WenJY
|
|
|
|
* @date 2022年06月06日 16:06
|
|
|
|
* @date 2022年06月06日 16:06
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
@Data
|
|
|
|
@EqualsAndHashCode(callSuper = false)
|
|
|
|
@EqualsAndHashCode(callSuper = false)
|
|
|
|
@Accessors(chain = true)
|
|
|
|
@Accessors(chain = true)
|
|
|
|
@TableName("SCADA_LCB_DEVICEINFO_1")
|
|
|
|
@TableName("SCADA_LCB_DEVICEINFO_1")
|
|
|
@ -39,6 +40,14 @@ public class AluminumDeviceDataInformation implements Serializable {
|
|
|
|
@TableField("RUNTIME")
|
|
|
|
@TableField("RUNTIME")
|
|
|
|
private String runTime;
|
|
|
|
private String runTime;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 停机时长 */
|
|
|
|
|
|
|
|
@TableField("STOPTIME")
|
|
|
|
|
|
|
|
private String stopTime;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 设备oee */
|
|
|
|
|
|
|
|
@TableField("OEE")
|
|
|
|
|
|
|
|
private String deviceOee;
|
|
|
|
|
|
|
|
|
|
|
|
/** 设备功率 */
|
|
|
|
/** 设备功率 */
|
|
|
|
@TableField("DEVICEPOWER")
|
|
|
|
@TableField("DEVICEPOWER")
|
|
|
|
private String devicePower;
|
|
|
|
private String devicePower;
|
|
|
@ -50,68 +59,4 @@ public class AluminumDeviceDataInformation implements Serializable {
|
|
|
|
/** 采集时间 */
|
|
|
|
/** 采集时间 */
|
|
|
|
@TableField("COLLECTTIME")
|
|
|
|
@TableField("COLLECTTIME")
|
|
|
|
private Date collectTime;
|
|
|
|
private Date collectTime;
|
|
|
|
|
|
|
|
|
|
|
|
public String getDeviceId() {
|
|
|
|
|
|
|
|
return deviceId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setDeviceId(String deviceId) {
|
|
|
|
|
|
|
|
this.deviceId = deviceId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getDeviceStatus() {
|
|
|
|
|
|
|
|
return deviceStatus;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setDeviceStatus(String deviceStatus) {
|
|
|
|
|
|
|
|
this.deviceStatus = deviceStatus;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getDeviceTakt() {
|
|
|
|
|
|
|
|
return deviceTakt;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setDeviceTakt(String deviceTakt) {
|
|
|
|
|
|
|
|
this.deviceTakt = deviceTakt;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getOpenTime() {
|
|
|
|
|
|
|
|
return openTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setOpenTime(String openTime) {
|
|
|
|
|
|
|
|
this.openTime = openTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getRunTime() {
|
|
|
|
|
|
|
|
return runTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setRunTime(String runTime) {
|
|
|
|
|
|
|
|
this.runTime = runTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getDevicePower() {
|
|
|
|
|
|
|
|
return devicePower;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setDevicePower(String devicePower) {
|
|
|
|
|
|
|
|
this.devicePower = devicePower;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getDeviceEnergy() {
|
|
|
|
|
|
|
|
return deviceEnergy;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setDeviceEnergy(String deviceEnergy) {
|
|
|
|
|
|
|
|
this.deviceEnergy = deviceEnergy;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Date getCollectTime() {
|
|
|
|
|
|
|
|
return collectTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCollectTime(Date collectTime) {
|
|
|
|
|
|
|
|
this.collectTime = collectTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|