提交 | 用户 | 时间
|
bbc1ee
|
1 |
package com.iailab.module.model.mcs.sche.vo; |
潘 |
2 |
|
|
3 |
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
|
4 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
5 |
import lombok.Data; |
|
6 |
|
|
7 |
import java.util.Date; |
b8ecc0
|
8 |
import java.util.List; |
bbc1ee
|
9 |
|
潘 |
10 |
/** |
|
11 |
* @author PanZhibao |
|
12 |
* @Description |
|
13 |
* @createTime 2024年09月06日 |
|
14 |
*/ |
|
15 |
@Schema(description = "模型服务 - 调度记录 Response VO") |
|
16 |
@Data |
|
17 |
@ExcelIgnoreUnannotated |
|
18 |
public class StScheduleRecordRespVO { |
|
19 |
|
|
20 |
@Schema(description = "ID") |
|
21 |
private String id; |
|
22 |
|
|
23 |
@Schema(description = "方案ID") |
|
24 |
private String schemeId; |
|
25 |
|
|
26 |
@Schema(description = "模型ID") |
|
27 |
private String modelId; |
|
28 |
|
|
29 |
@Schema(description = "模型名称") |
|
30 |
private String modelName; |
|
31 |
|
|
32 |
@Schema(description = "调度时间") |
|
33 |
private String scheduleTime; |
|
34 |
|
|
35 |
@Schema(description = "创建时间") |
|
36 |
private Date createTime; |
b8ecc0
|
37 |
|
8a6b19
|
38 |
@Schema(description = "结果状态") |
潘 |
39 |
private String resultCode; |
|
40 |
|
|
41 |
@Schema(description = "结果数据") |
|
42 |
private String resultData; |
|
43 |
|
b8ecc0
|
44 |
@Schema(description = "详情") |
潘 |
45 |
private List<StScheduleRecordDetailRespVO> detailList; |
bbc1ee
|
46 |
} |