提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.api.mcs.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 |
|
b368e6
|
7 |
import java.io.Serializable; |
7fd198
|
8 |
import java.util.Date; |
潘 |
9 |
|
|
10 |
/** |
|
11 |
* @author PanZhibao |
|
12 |
* @Description |
|
13 |
* @createTime 2024年08月26日 |
|
14 |
*/ |
|
15 |
@Schema(description = "RPC 模型 - 预测数据 DTO") |
|
16 |
@Data |
b368e6
|
17 |
public class PreDataViewReqDTO implements Serializable { |
潘 |
18 |
private static final long serialVersionUID = 1L; |
7fd198
|
19 |
|
潘 |
20 |
@Schema(description = "预测项ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
|
21 |
private String itemId; |
|
22 |
|
b368e6
|
23 |
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
7fd198
|
24 |
private String startTime; |
潘 |
25 |
|
b368e6
|
26 |
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
7fd198
|
27 |
private String endTime; |
潘 |
28 |
|
b368e6
|
29 |
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
7fd198
|
30 |
private Date predictTime; |
潘 |
31 |
} |