package com.iailab.module.model.mcs.sche.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2025年02月23日
|
*/
|
@Schema(description = "模型服务 - 模拟调整记录 Response VO")
|
@Data
|
public class StAdjustResultRespVO {
|
@Schema(description = "ID", example = "ID")
|
private String id;
|
|
private String configId;
|
|
private String outputId;
|
|
private String outputName;
|
|
private String scheduleModelId;
|
|
private Date adjustTime;
|
|
private String adjustValue;
|
|
private String jsonValue;
|
}
|