package com.iailab.module.model.matlab.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
*
|
*
|
* @author Dzd
|
* @since 1.0.0 2025-02-08
|
*/
|
@Data
|
@TableName("t_ml_model_method_setting")
|
public class MlModelMethodSettingEntity {
|
|
/**
|
* id
|
*/
|
private String id;
|
/**
|
* 模型方法id
|
*/
|
private String mlModelMethodId;
|
/**
|
* 参数名称
|
*/
|
private String name;
|
/**
|
* 参数key
|
*/
|
private String settingKey;
|
/**
|
* 参数值
|
*/
|
private String settingValue;
|
/**
|
* 参数类型
|
*/
|
private String valueType;
|
/**
|
* 排序
|
*/
|
private Integer sort;
|
}
|