提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.api.mdk.dto; |
潘 |
2 |
|
4f1717
|
3 |
import com.fasterxml.jackson.annotation.JsonFormat; |
7fd198
|
4 |
import io.swagger.v3.oas.annotations.media.Schema; |
潘 |
5 |
import lombok.Data; |
|
6 |
|
c860df
|
7 |
import javax.validation.constraints.NotNull; |
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 |
|
17 |
public class MdkPredictReqDTO { |
|
18 |
|
c860df
|
19 |
@Schema(description = "预测时间") |
潘 |
20 |
@NotNull(message="预测时间不能为空") |
4f1717
|
21 |
@JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8") |
7fd198
|
22 |
private Date predictTime; |
潘 |
23 |
|
cf2287
|
24 |
@Schema(description = "预测模块(管网类型)") |
7fd198
|
25 |
private String moduleType; |
潘 |
26 |
|
c860df
|
27 |
@Schema(description = "预测项编号") |
7fd198
|
28 |
private String itemNo; |
4f1717
|
29 |
|
潘 |
30 |
@Schema(description = "是否返回预测结果") |
|
31 |
private Boolean isResult; |
7fd198
|
32 |
} |