package com.iailab.module.model.mcs.sche.vo; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import javax.validation.constraints.NotNull; import java.util.Date; /** * @author PanZhibao * @Description * @createTime 2024å¹´09月06æ—¥ */ @Schema(description = "模型æœåŠ¡ - 调度方案创建/修改 Request VO") @Data public class StScheduleSchemeSaveReqVO { @Schema(description = "ID") private String id; @Schema(description = "ç¼–å·", requiredMode = Schema.RequiredMode.REQUIRED) @NotNull(message = "ç¼–å·ä¸èƒ½ä¸ºç©º") private String code; @Schema(description = "å称", requiredMode = Schema.RequiredMode.REQUIRED) @NotNull(message = "å称ä¸èƒ½ä¸ºç©º") private String name; @Schema(description = "触å‘æ–¹å¼") private String triggerMethod; @Schema(description = "触å‘æ¡ä»¶") private String triggerCondition; @Schema(description = "调整对象") private String scheduleObj; @Schema(description = "调整类型") private String scheduleType; @Schema(description = "调整ç–ç•¥") private String scheduleStrategy; @Schema(description = "调度模型") private String modelId; @Schema(description = " 状æ€ï¼ˆ0æ£å¸¸ 1åœç”¨ï¼‰") private Integer status; @Schema(description = "备注") private String remark; @Schema(description = "项目ID") private String mpkprojectid; @Schema(description = "调整速率") private Integer adjustRate; }