dengzedong
5 天以前 c9e48bd2dff2b5766589024cf7264189b5f2a05c
提交 | 用户 | 时间
7fd198 1 package com.iailab.module.model.api.mdk.dto;
2
07890e 3 import com.fasterxml.jackson.annotation.JsonFormat;
7fd198 4 import io.swagger.v3.oas.annotations.media.Schema;
5 import lombok.Data;
6
932343 7 import javax.validation.constraints.NotNull;
7fd198 8 import java.util.Date;
054fb9 9 import java.util.Map;
7fd198 10
11 /**
12  * @author PanZhibao
13  * @Description
14  * @createTime 2024年08月26日
15  */
16 @Schema(description = "RPC 模型 - 调度 DTO")
17 @Data
18 public class MdkScheduleReqDTO {
19
932343 20     @Schema(description = "调度方案编号")
21     @NotNull(message="调度方案编号不能为空")
054fb9 22     private String scheduleCode;
23
932343 24     @Schema(description = "调度方案时间")
25     @NotNull(message="调度方案时间不能为空")
07890e 26     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
7fd198 27     private Date scheduleTime;
6c2ff1 28
29     @Schema(description = "动态数据长度(输入端口,数据长度)")
30     private Map<Integer, Integer> dynamicDataLength;
e54ce4 31
81ce77 32     @Schema(description = "动态模型设置参数")
33     private Map<String, String> dynamicSettings;
7fd198 34 }