zhangherong
2025-07-16 387f9c99ae5ad7ae097dc1fc9e626a3fa8a58885
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
package org.jeecg.modules.mdc.vo;
 
import lombok.Data;
 
/**
 * @author Lius
 * @date 2024/3/13 15:43
 */
@Data
public class MdcEquipmentStatusVo {
    /**
     * 运行
     */
    private Integer runCount = 0;
    /**
     * 关机
     */
    private Integer closeCount = 0;
    /**
     * 报警
     */
    private Integer alarmCount = 0;
    /**
     * 待机
     */
    private Integer waitCount = 0;
}