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;
|
|
}
|