package cn.iocoder.yudao.module.mes.controller.admin.dv.telemetry.vo;
|
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.ToString;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDateTime;
|
|
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
|
@Schema(description = "管理后台 - MES 设备数采遥测分页 Request VO")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
public class MesDvTelemetryPageReqVO extends PageParam {
|
|
@Schema(description = "数采设备ID", example = "tb_001")
|
private String tbDeviceId;
|
|
@Schema(description = "设备名称", example = "1号变压器")
|
private String deviceName;
|
|
@Schema(description = "信号名称", example = "温度")
|
private String paramName;
|
|
@Schema(description = "是否异常")
|
private Boolean whetherAnomaly;
|
|
@Schema(description = "班次", example = "早班")
|
private String shiftName;
|
|
@Schema(description = "遥测数据时间")
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
private LocalDateTime[] telemetryDataTime;
|
|
}
|