| | |
| | | */ |
| | | private BigDecimal closeLong = BigDecimal.ZERO; |
| | | /** |
| | | * 故障时长 |
| | | */ |
| | | private BigDecimal faultLong = BigDecimal.ZERO; |
| | | /** |
| | | * 故障率 |
| | | */ |
| | | private BigDecimal faultRate = BigDecimal.ZERO; |
| | | /** |
| | | * 运行时长(去除故障时间) |
| | | */ |
| | | private BigDecimal removeFaultRunLong = BigDecimal.ZERO; |
| | | /** |
| | | * 颜色 |
| | | */ |
| | | private String color; |
| | | |
| | | public MdcEfficiencyResultDto(String theDate, BigDecimal processLong, BigDecimal utilizationRate, BigDecimal startRate, BigDecimal openRate, BigDecimal openLong, BigDecimal waitLong, BigDecimal closeLong) { |
| | | public MdcEfficiencyResultDto(String theDate, BigDecimal processLong, BigDecimal utilizationRate, BigDecimal startRate, BigDecimal openRate, BigDecimal openLong, BigDecimal waitLong, BigDecimal closeLong, BigDecimal faultLong, BigDecimal faultRate, BigDecimal removeFaultRunLong) { |
| | | this.theDate = theDate; |
| | | this.processLong = processLong; |
| | | this.utilizationRate = utilizationRate; |
| | |
| | | this.openLong = openLong; |
| | | this.waitLong = waitLong; |
| | | this.closeLong = closeLong; |
| | | this.faultLong = faultLong; |
| | | this.faultRate = faultRate; |
| | | this.removeFaultRunLong = removeFaultRunLong; |
| | | } |
| | | |
| | | public MdcEfficiencyResultDto() { |