提交 | 用户 | 时间
|
87d7ae
|
1 |
package com.iailab.module.model.mcs.sche.vo; |
潘 |
2 |
|
047676
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
L |
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.util.Date; |
|
7 |
|
87d7ae
|
8 |
/** |
潘 |
9 |
* @author PanZhibao |
|
10 |
* @Description |
|
11 |
* @createTime 2025年02月23日 |
|
12 |
*/ |
047676
|
13 |
@Schema(description = "模型服务 - 模拟调整记录 Response VO") |
L |
14 |
@Data |
87d7ae
|
15 |
public class StAdjustResultRespVO { |
047676
|
16 |
@Schema(description = "ID", example = "ID") |
L |
17 |
private String id; |
|
18 |
|
|
19 |
private String configId; |
|
20 |
|
|
21 |
private String outputId; |
|
22 |
|
|
23 |
private String outputName; |
|
24 |
|
|
25 |
private String scheduleModelId; |
|
26 |
|
|
27 |
private Date adjustTime; |
|
28 |
|
|
29 |
private String adjustValue; |
|
30 |
|
|
31 |
private String jsonValue; |
87d7ae
|
32 |
} |