¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.jeecg.modules.mdc.dto; |
| | | |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * @author: LiuS |
| | | * @create: 2023-06-27 16:34 |
| | | */ |
| | | @Data |
| | | public class MdcEfficiencyResultDto { |
| | | /** |
| | | * æææ¥æ |
| | | */ |
| | | private String theDate; |
| | | /** |
| | | * å å·¥æ¶é¿ |
| | | */ |
| | | private BigDecimal processLong = BigDecimal.ZERO; |
| | | /** |
| | | * å©ç¨ç |
| | | */ |
| | | private BigDecimal utilizationRate = BigDecimal.ZERO; |
| | | /** |
| | | * å¼å¨ç |
| | | */ |
| | | private BigDecimal startRate = BigDecimal.ZERO; |
| | | /** |
| | | * 弿ºç |
| | | */ |
| | | private BigDecimal openRate = BigDecimal.ZERO; |
| | | /** |
| | | * 弿ºæ¶é¿ |
| | | */ |
| | | private BigDecimal openLong = BigDecimal.ZERO; |
| | | /** |
| | | * å¾
æºæ¶é¿ |
| | | */ |
| | | private BigDecimal waitLong = BigDecimal.ZERO; |
| | | /** |
| | | * å
³æºæ¶é¿ |
| | | */ |
| | | 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, BigDecimal faultLong, BigDecimal faultRate, BigDecimal removeFaultRunLong) { |
| | | this.theDate = theDate; |
| | | this.processLong = processLong; |
| | | this.utilizationRate = utilizationRate; |
| | | this.startRate = startRate; |
| | | this.openRate = openRate; |
| | | this.openLong = openLong; |
| | | this.waitLong = waitLong; |
| | | this.closeLong = closeLong; |
| | | this.faultLong = faultLong; |
| | | this.faultRate = faultRate; |
| | | this.removeFaultRunLong = removeFaultRunLong; |
| | | } |
| | | |
| | | public MdcEfficiencyResultDto() { |
| | | |
| | | } |
| | | } |