提交 | 用户 | 时间
|
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 |
|
|
9 |
/** |
|
10 |
* @author PanZhibao |
|
11 |
* @Description |
|
12 |
* @createTime 2024年08月26日 |
|
13 |
*/ |
|
14 |
@Schema(description = "RPC 模型 - 预测数据 DTO") |
|
15 |
@Data |
|
16 |
public class MdkPredictDataDTO { |
|
17 |
|
b368e6
|
18 |
@Schema(description = "数据时间") |
潘 |
19 |
@JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8") |
7fd198
|
20 |
private Date dataTime; |
潘 |
21 |
|
b368e6
|
22 |
@Schema(description = "数据值") |
7fd198
|
23 |
private Double dataValue; |
潘 |
24 |
} |