package cn.iocoder.yudao.module.mes.controller.admin.dv.telemetry.vo; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import java.time.LocalDateTime; @Schema(description = "管理后台 - MES 设备数采遥测 Response VO") @Data public class MesDvTelemetryRespVO { @Schema(description = "编号") private Long id; @Schema(description = "数采设备ID") private String tbDeviceId; @Schema(description = "设备名称") private String deviceName; @Schema(description = "信号名称") private String paramName; @Schema(description = "设备KEY名称") private String paramKeyName; @Schema(description = "标准值") private String standardValue; @Schema(description = "信号值(实时)") private String timelyValue; @Schema(description = "均值") private String avgValue; @Schema(description = "最大值") private String maxValue; @Schema(description = "最小值") private String minValue; @Schema(description = "是否异常") private Boolean whetherAnomaly; @Schema(description = "遥测数据时间") private LocalDateTime telemetryDataTime; @Schema(description = "单据号") private String billNo; @Schema(description = "班次") private String shiftName; @Schema(description = "拉取时间") private LocalDateTime pullTime; @Schema(description = "创建时间") private LocalDateTime createTime; }