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