package com.iailab.module.mhub.mdk.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2025年06月09日
|
*/
|
@Data
|
@TableName("t_mdk_model_setting")
|
public class MdkModelSettingEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId
|
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 Integer sort;
|
}
|