package com.iailab.module.mhub.mdk.vo;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* @description: 方法参数关联表
|
* @author: dzd
|
* @date: 2024/9/13 15:49
|
**/
|
@Data
|
public class MdkModelSettingRespVO implements Serializable {
|
|
@Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
@ExcelProperty("ID")
|
private String id;
|
|
@Schema(description = "方法id", example = "")
|
private String methodId;
|
|
@Schema(description = "key", example = "")
|
private String settingKey;
|
|
@Schema(description = "参数名称", example = "")
|
private String name;
|
|
@Schema(description = "参数默认值", example = "")
|
private String value;
|
|
@Schema(description = "输入类型", example = "")
|
private String type;
|
|
@Schema(description = "参数类型", example = "")
|
private String valueType;
|
|
@Schema(description = "最大值", example = "")
|
private Integer max;
|
|
@Schema(description = "最小值", example = "")
|
private Integer min;
|
|
@Schema(description = "参数值", example = "")
|
private String settingValue;
|
|
@Schema(description = "关联参数", example = "")
|
private List<MdkSettingSelectRespVO> settingSelects;
|
}
|