潘志宝
2024-12-11 cca8f689d8cb2ec4d3e757d9e3e4ccb7ed03e460
提交 | 用户 | 时间
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 }