提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.api.mdk.dto; |
潘 |
2 |
|
b368e6
|
3 |
import com.fasterxml.jackson.annotation.JsonFormat; |
7fd198
|
4 |
import io.swagger.v3.oas.annotations.media.Schema; |
潘 |
5 |
import lombok.Data; |
|
6 |
|
|
7 |
import java.util.Date; |
|
8 |
import java.util.List; |
4f1717
|
9 |
import java.util.Map; |
7fd198
|
10 |
|
潘 |
11 |
/** |
4f1717
|
12 |
* 单个预测项预测结果 |
潘 |
13 |
* |
7fd198
|
14 |
* @author PanZhibao |
潘 |
15 |
* @Description |
|
16 |
* @createTime 2024年08月26日 |
|
17 |
*/ |
|
18 |
@Schema(description = "RPC 模型 - 调度 DTO") |
|
19 |
@Data |
|
20 |
public class MdkPredictItemRespDTO { |
|
21 |
|
b368e6
|
22 |
@Schema(description = "预测时间") |
7fd198
|
23 |
private String itemId; |
潘 |
24 |
|
b368e6
|
25 |
@Schema(description = "预测时间") |
cca8f6
|
26 |
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
7fd198
|
27 |
private Date predictTime; |
潘 |
28 |
|
4f1717
|
29 |
@Schema(description = "单个预测项预测结果,KEY为预测项目编码") |
潘 |
30 |
private Map<String, List<MdkPredictDataDTO>> predictData; |
7fd198
|
31 |
} |