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