潘志宝
2025-02-25 b3674cefbeb8ffaf49f96d0c8fe7a6694ed86eec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.iailab.module.model.api.mdk.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
import java.util.Date;
import java.util.Map;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2025年02月24日
 */
@Schema(description = "RPC 模型 - 模拟调整 DTO")
@Data
public class MdkPredictSimAdjustReqDTO {
 
    @Schema(description = "预测时间")
    @NotNull(message="预测时间不能为空")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date predictTime;
 
    @Schema(description = "调度方案编号")
    @NotNull(message="调度方案编号不能为空")
    private String scheduleCode;
 
    @Schema(description = "调度模型结果")
    @NotNull(message="调度模型结果不能为空")
    private Map<String, Object> modelResult;
}