liriming
2024-11-26 5b952f77058a9da5af5e143a6c2c7ba195aa736d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.iailab.module.model.mcs.pre.vo;
 
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;
 
/**
 * @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;
}