package com.iailab.module.model.api.mcs.dto;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年08月29日
|
*/
|
@Schema(description = "RPC 模型 - 调度建议 DTO")
|
@Data
|
public class ScheduleSuggestRespDTO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Schema(description = "ID")
|
private String id;
|
|
@Schema(description = "标题")
|
private String title;
|
|
@Schema(description = "内容")
|
private String content;
|
|
@Schema(description = "排序")
|
private Integer sort;
|
|
@Schema(description = "预警ID")
|
private String alarmId;
|
|
@Schema(description = "预测项ID")
|
private String itemId;
|
|
@Schema(description = "模型ID")
|
private String modelId;
|
|
@Schema(description = "调整对象")
|
private String adjustObj;
|
|
@Schema(description = "调整介质")
|
private String adjustMedium;
|
|
@Schema(description = "调整策略")
|
private String adjustStrategy;
|
|
@Schema(description = "调整方式")
|
private String adjustMode;
|
|
@Schema(description = "调整值")
|
private BigDecimal adjustValue;
|
|
@Schema(description = "调整单位")
|
private String adjustUnit;
|
|
@Schema(description = "持续时长")
|
private BigDecimal adjustTimes;
|
|
@Schema(description = "调整开始时间")
|
private Date adjustStart;
|
|
@Schema(description = "调整结束时间")
|
private Date adjustEnd;
|
|
@Schema(description = "建议时间")
|
private Date suggestTime;
|
|
@Schema(description = "状态(0未处理 1已采纳 2已忽略)")
|
private Integer status;
|
}
|