package com.iailab.module.model.mcs.sche.vo; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import java.math.BigDecimal; import java.util.Date; /** * @author PanZhibao * @Description * @createTime 2024å¹´11月27æ—¥ */ @Schema(description = "模型æœåŠ¡ - 调度建议 Response VO") @Data public class StScheduleSuggestRespVO { @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 schemeId; @Schema(description = "预è¦ID") private String alarmId; @Schema(description = "预测项ID") private String itemId; @Schema(description = "模型ID") private String modelId; @Schema(description = "调整对象") private String scheduleObj; @Schema(description = "调整类型") private String scheduleType; @Schema(description = "调整ç–ç•¥") private String scheduleStrategy; @Schema(description = "调整方å¼") private String adjustMode; @Schema(description = "调整值") private BigDecimal adjustValue; @Schema(description = "调整å•ä½") private String adjustUnit; @Schema(description = "æŒç»æ—¶é•¿") private BigDecimal adjustTimes; @Schema(description = "调整开始时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date adjustStart; @Schema(description = "调整结æŸæ—¶é—´") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date adjustEnd; @Schema(description = "调度时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date scheduleTime; @Schema(description = "状æ€ï¼ˆ0æœªå¤„ç† 1已采纳 2已忽略)") private Integer status; @Schema(description = "处ç†äºº") private String handler; @Schema(description = "处ç†æ—¶é—´") private Date handleTime; @Schema(description = "创建时间") private Date createTime; }