package com.iailab.module.model.mcs.sche.vo;
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年09月06日
|
*/
|
@Schema(description = "模型服务 - 模型设置参数 Response VO")
|
@Data
|
@ExcelIgnoreUnannotated
|
public class StScheduleModelSettingRespVO {
|
|
@Schema(description = "ID")
|
private String id;
|
|
@Schema(description = "模型ID")
|
private String modelid;
|
|
@Schema(description = "键")
|
private String key;
|
|
@Schema(description = "值")
|
private String value;
|
|
@Schema(description = "值类型")
|
private String valuetype;
|
|
@Schema(description = "名称")
|
private String name;
|
|
@Schema(description = "排序")
|
private Integer sort;
|
}
|