package cn.iocoder.yudao.module.mes.controller.admin.dv.telemetry.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Schema(description = "管理后台 - MES 设备数采比对校验统计 Response VO")
|
@Data
|
public class MesDvTelemetryCheckSummaryRespVO {
|
|
@Schema(description = "数采设备ID")
|
private String tbDeviceId;
|
|
@Schema(description = "设备名称")
|
private String deviceName;
|
|
@Schema(description = "参数总数")
|
private Integer totalCount;
|
|
@Schema(description = "正常参数数")
|
private Integer normalCount;
|
|
@Schema(description = "异常参数数")
|
private Integer anomalyCount;
|
|
@Schema(description = "异常率(%)")
|
private BigDecimal anomalyRate;
|
|
}
|