xiaoyi
3 天以前 abf1c0a35d85d38239ff5d2ed746a4e4b797c9d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 MesDvTelemetryPullRespVO {
 
    @Schema(description = "本次拉取新增数据条数")
    private Integer recordCount;
 
    @Schema(description = "本次拉取涉及设备数")
    private Integer deviceCount;
 
    @Schema(description = "拉取时间")
    private LocalDateTime pullTime;
 
}