package org.jeecg.modules.mdc.vo;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @author: LiuS
|
* @create: 2023-07-19 14:33
|
*/
|
@Data
|
public class StatisticalAnalysisVo {
|
|
/**
|
* 开机时长 UPT
|
*/
|
private BigDecimal openLong = new BigDecimal("0");
|
/**
|
* 待机时长
|
*/
|
private BigDecimal waitLong = new BigDecimal("0");
|
/**
|
* 加工时长 EMT
|
*/
|
private BigDecimal processLong = new BigDecimal("0");
|
/**
|
* 报警
|
*/
|
private BigDecimal errorLong = new BigDecimal("0");
|
/**
|
* 关机时长
|
*/
|
private BigDecimal closeLong = new BigDecimal("0");
|
/**
|
* 日期
|
*/
|
private String theDate;
|
/**
|
* 总时长 MT
|
*/
|
private BigDecimal totalLong = new BigDecimal("0");
|
/**
|
* 开机率
|
*/
|
private BigDecimal openRate = new BigDecimal("0");
|
/**
|
* 利用率
|
*/
|
private BigDecimal utilizationRate = new BigDecimal("0");
|
/**
|
* 运行率
|
*/
|
private BigDecimal usedOpenRate = new BigDecimal("0");
|
}
|