潘志宝
2024-12-03 51c1c2c9fa28fb1765dd6e81c70b78566792aebe
提交 | 用户 | 时间
bbc1ee 1 package com.iailab.module.model.mcs.sche.vo;
2
3 import io.swagger.v3.oas.annotations.media.Schema;
4 import lombok.Data;
5
6 import java.util.Date;
7
8 /**
9  * @author PanZhibao
10  * @Description
11  * @createTime 2024年09月06日
12  */
13 @Schema(description = "模型服务 - 调度记录详情 Request VO")
14 @Data
15 public class StScheduleRecordDetailSaveReqVO {
16
17     @Schema(description = "ID")
18     private String id;
19
20     @Schema(description = "记录ID")
21     private String recordId;
22
23     @Schema(description = "方案ID")
24     private String schemeId;
25
26     @Schema(description = "模型ID")
27     private String modelId;
28
29     @Schema(description = "结果KEY")
30     private String resultKey;
31
32     @Schema(description = "结果值")
33     private String resultValue;
34
35     @Schema(description = "调度时间")
36     private Date scheduleTime;
37 }