Lius
2025-05-15 5a0dbf5c84f677c9f20252ccc63221dc7ba68d6c
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
package org.jeecg.modules.screen.dto;
 
import lombok.Data;
 
/**
 * @Author: Lius
 * @CreateTime: 2025-02-28
 * @Description:
 */
@Data
public class EquipmentStatusOverview {
    /**
     * 设备总数
     */
    private Integer equipmentCount = 0;
    /**
     * 大修、项修数
     */
    private Integer repairCount = 0;
    /**
     * 正常运行数
     */
    private Integer runCount = 0;
    /**
     * 待机数
     */
    private Integer waitCount = 0;
    /**
     * 报警数
     */
    private Integer errorCount = 0;
    /**
     * 关机数
     */
    private Integer closeCount = 0;
    /**
     * 完成量
     */
    private Integer qualifiedQty = 0;
    /**
     * 任务量
     */
    private Integer planQty = 0;
 
}