xiaoyi
4 天以前 c9d4ba37c1f681b12e24014013fa9a28734bad42
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
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;
 
}