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;
|
|
}
|