package com.iailab.module.model.mcs.sche.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
|
/**
|
* @author Jay
|
*/
|
@Schema(description = "模型服务 - 调度建议快照图表查询 Request VO")
|
@Data
|
public class StSuggestSnapshotRecordChartReqVO {
|
|
@Schema(description = "数据类型(DATAPOINT,IND,PLAN,PREDICTITEM)")
|
private String dataType;
|
|
@Schema(description = "数据编号")
|
private String dataNo;
|
|
@Schema(description = "开始时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date startTime;
|
|
@Schema(description = "结束时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date endTime;
|
}
|