| | |
| | | /** |
| | | * 加工时长 |
| | | */ |
| | | private BigDecimal processLong; |
| | | private BigDecimal processLong = BigDecimal.ZERO; |
| | | /** |
| | | * 利用率 |
| | | */ |
| | | private BigDecimal utilizationRate; |
| | | private BigDecimal utilizationRate = BigDecimal.ZERO; |
| | | /** |
| | | * 开动率 |
| | | */ |
| | | private BigDecimal startRate; |
| | | private BigDecimal startRate = BigDecimal.ZERO; |
| | | /** |
| | | * 开机率 |
| | | */ |
| | | private BigDecimal openRate; |
| | | private BigDecimal openRate = BigDecimal.ZERO; |
| | | /** |
| | | * 开机时长 |
| | | */ |
| | | private BigDecimal openLong; |
| | | private BigDecimal openLong = BigDecimal.ZERO; |
| | | /** |
| | | * 待机时长 |
| | | */ |
| | | private BigDecimal waitLong; |
| | | private BigDecimal waitLong = BigDecimal.ZERO; |
| | | /** |
| | | * 关机时长 |
| | | */ |
| | | private BigDecimal closeLong; |
| | | private BigDecimal closeLong = BigDecimal.ZERO; |
| | | /** |
| | | * 颜色 |
| | | */ |
| | | private String color; |
| | | |
| | | public MdcEfficiencyShiftResultDto(String theDate, BigDecimal processLong, BigDecimal utilizationRate, BigDecimal startRate, BigDecimal openRate, BigDecimal openLong, BigDecimal waitLong, BigDecimal closeLong) { |
| | | this.theDate = theDate; |
| | | this.processLong = processLong; |
| | | this.utilizationRate = utilizationRate; |
| | | this.startRate = startRate; |
| | | this.openRate = openRate; |
| | | this.openLong = openLong; |
| | | this.waitLong = waitLong; |
| | | this.closeLong = closeLong; |
| | | } |
| | | |
| | | public MdcEfficiencyShiftResultDto() { |
| | | |
| | | } |
| | | } |