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.util.Date; /** * @author PanZhibao * @Description * @createTime 2024å¹´09月06æ—¥ */ @Schema(description = "模型æœåŠ¡ - 调度方案 Response VO") @Data public class StScheduleSchemeRespVO { @Schema(description = "ID", example = "ID") private String id; @Schema(description = "ç¼–å·", example = "ç¼–å·") private String code; @Schema(description = "å称", example = "å称") private String name; @Schema(description = "触å‘æ–¹å¼", example = "事件触å‘") private String triggerMethod; @Schema(description = "触å‘æ¡ä»¶", example = "mcs.predict.finished") private String triggerCondition; @Schema(description = "调整对象", example = "电厂") private String scheduleObj; @Schema(description = "调整类型", example = "调整类型") private String scheduleType; @Schema(description = "调整ç–ç•¥", example = "调整ç–ç•¥") private String scheduleStrategy; @Schema(description = "调度模型", example = "调度模型") private String modelId; @Schema(description = "调度时间", example = "2024-09-01 00:00:00") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date scheduleTime; @Schema(description = "备注", example = "备注") private String remark; @Schema(description = "状æ€ï¼ˆ0æ£å¸¸ 1åœç”¨ï¼‰", example = "0") private Integer status; @Schema(description = "项目ID") private String mpkprojectid; @Schema(description = "è¿è¡ŒçŠ¶æ€") private String runStatus; }