xiaoyi
3 天以前 abf1c0a35d85d38239ff5d2ed746a4e4b797c9d1
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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;
 
}