package com.iailab.module.model.mcs.pre.vo; import com.fasterxml.jackson.annotation.JsonFormat; import com.iailab.framework.common.pojo.PageParam; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.ToString; import java.util.Date; import java.util.List; /** * @author PanZhibao * @Description * @createTime 2024年11月20日 */ @Schema(description = "模型平台 - Request VO") @Data @EqualsAndHashCode(callSuper = true) @ToString(callSuper = true) public class MmPredictAlarmMessagePageReqVO extends PageParam { @Schema(description = "配置ID", example = "") private String configId; @Schema(description = "消息标题", example = "") private String title; @Schema(description = "消息内容", example = "") private String content; @Schema(description = "监控对象", example = "") private String alarmObj; @Schema(description = "开始时间", example = "") private Date startTime; @Schema(description = "结束时间", example = "") private Date endTime; @Schema(description = "预测时间", example = "") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date predictTime; @Schema(description = "输出ID", example = "") private List outIds; }