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 StSuggestOperationRecordReqVO {
|
|
@Schema(description = "ID")
|
private String id;
|
|
@Schema(description = "标题")
|
private String title;
|
|
@Schema(description = "内容")
|
private String content;
|
|
@Schema(description = "方案ID")
|
private String schemeId;
|
|
@Schema(description = "模型ID")
|
private String modelId;
|
|
@Schema(description = "模型名称")
|
private String modelName;
|
|
@Schema(description = "调度时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date scheduleTime;
|
|
@Schema(description = "结果状态")
|
private String resultCode;
|
|
@Schema(description = "结果数据")
|
private String resultData;
|
|
@Schema(description = "操作(已采纳,取消采纳,已忽略等)")
|
private String operate;
|
|
@Schema(description = "原因")
|
private String reason;
|
|
@Schema(description = "处理人ID")
|
private String handlerId;
|
|
@Schema(description = "处理人")
|
private String handler;
|
|
@Schema(description = "处理时间")
|
private Date handleTime;
|
|
@Schema(description = "创建时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date createTime;
|
|
@Schema(description = "建议ID")
|
private String suggestId;
|
|
@Schema(description = "调整对象")
|
private String scheduleObj;
|
|
}
|