package com.iailab.module.model.mpk.dto;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* @description: 方法参数关联表
|
* @author: dzd
|
* @date: 2024/9/13 15:49
|
**/
|
@Data
|
public class MethodSettingDTO implements Serializable {
|
|
/**
|
* id
|
*/
|
private String id;
|
|
/**
|
* '方法id'
|
*/
|
private String methodId;
|
|
/**
|
* key
|
*/
|
private String settingKey;
|
|
/**
|
* 参数名称
|
*/
|
private String name;
|
|
/**
|
* 参数默认值
|
*/
|
private String value;
|
|
/**
|
* 输入类型
|
*/
|
private String type;
|
|
/**
|
* 参数类型
|
*/
|
private String valueType;
|
|
/**
|
* 最大值
|
*/
|
private Integer max;
|
|
/**
|
* 最小值
|
*/
|
private Integer min;
|
|
private List<SettingSelectDTO> settingSelects;
|
}
|