package com.ycl.platform.domain.vo.screen;
|
|
import enumeration.Trend;
|
import lombok.Data;
|
|
/**
|
* @author gonghl
|
* @since 2024/8/7 上午 10:06
|
*/
|
@Data
|
public class MonitorTotalVO {
|
|
/**
|
* 设备类型
|
*/
|
private String type;
|
|
/**
|
* 设备总数
|
*/
|
private Integer totalNum;
|
|
/**
|
* 设备总数趋势
|
*/
|
private Trend totalTrend;
|
|
/**
|
* 设备正常数
|
*/
|
private Integer normalNum;
|
|
/**
|
* 设备正常数趋势
|
*/
|
private Trend normalTrend;
|
|
/**
|
* 设备异常数
|
*/
|
private Integer errorNum;
|
|
/**
|
* 设备异常数趋势
|
*/
|
private Trend errorTrend;
|
|
}
|