liriming
2024-11-26 5b952f77058a9da5af5e143a6c2c7ba195aa736d
提交 | 用户 | 时间
b06c21 1 package com.iailab.module.model.mcs.pre.vo;
2
3 import com.iailab.framework.common.pojo.PageParam;
4 import io.swagger.v3.oas.annotations.media.Schema;
5 import lombok.Data;
6 import lombok.EqualsAndHashCode;
7 import lombok.ToString;
8
9 import java.util.Date;
10
11 /**
12  * @author PanZhibao
13  * @Description
14  * @createTime 2024年11月20日
15  */
16 @Schema(description = "模型平台 - Request VO")
17 @Data
18 @EqualsAndHashCode(callSuper = true)
19 @ToString(callSuper = true)
20 public class MmPredictAlarmMessagePageReqVO extends PageParam {
21
22     @Schema(description = "配置ID", example = "")
23     private String configId;
24
25     @Schema(description = "消息标题", example = "")
26     private String title;
27
28     @Schema(description = "消息内容", example = "")
29     private String content;
30
31     @Schema(description = "监控对象", example = "")
32     private String alarmObj;
33
34     @Schema(description = "开始时间", example = "")
35     private Date startTime;
36
37     @Schema(description = "结束时间", example = "")
38     private Date endTime;
39 }