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 StSuggestSnapshotRecordSaveReqVO {
|
|
@Schema(description = "ID")
|
private String id;
|
|
@Schema(description = "建议ID(只记录采纳)")
|
private String suggestId;
|
|
@Schema(description = "操作记录ID(只记录采纳)")
|
private String operationId;
|
|
@Schema(description = "模型ID")
|
private String modelId;
|
|
@Schema(description = "数据类型(DATAPOINT,IND,PLAN,PREDICTITEM)")
|
private String dataType;
|
|
@Schema(description = "数据编号")
|
private String dataNo;
|
|
@Schema(description = "数据名称")
|
private String dataName;
|
|
@Schema(description = "调度时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date scheduleTime;
|
|
@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;
|
|
@Schema(description = "序列化的数据")
|
private String jsonValue;
|
|
@Schema(description = "排序")
|
private Integer sort;
|
|
|
}
|