lyh
5 天以前 54f239669575cedfdbdf28e38d0e9619a610bf95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package org.jeecg.modules.mdc.dto;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author: LiuS
 * @create: 2023-07-26 16:04
 */
@Data
public class MdcEfficiencyShiftResultDto {
    /**
     * 有效日期
     */
    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 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() {
 
    }
}