| | |
| | | package com.iailab.module.model.api.mdk.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | |
| | | |
| | | @Schema(description = "预测时间") |
| | | @NotNull(message="预测时间不能为空") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date predictTime; |
| | | |
| | | @Schema(description = "预测模块") |
| | | @Schema(description = "预测模块(管网类型)") |
| | | private String moduleType; |
| | | |
| | | @Schema(description = "预测项编号") |
| | | private String itemNo; |
| | | |
| | | @Schema(description = "是否返回预测结果") |
| | | private Boolean isResult; |
| | | } |