dengzedong
2025-02-27 3e61b6d86d6a98214e56c652a36a2290d471a695
提交 | 用户 | 时间
3e61b6 1 package com.iailab.module.model.matlab.entity;
D 2
3 import com.baomidou.mybatisplus.annotation.TableName;
4 import lombok.Data;
5
6 import java.util.Date;
7
8 /**
9  * 
10  *
11  * @author Dzd 
12  * @since 1.0.0 2025-02-08
13  */
14 @Data
15 @TableName("t_ml_model_method_setting")
16 public class MlModelMethodSettingEntity {
17
18     /**
19      * id
20      */
21     private String id;
22     /**
23      * 模型方法id
24      */
25     private String mlModelMethodId;
26     /**
27      * 参数名称
28      */
29     private String name;
30     /**
31      * 参数key
32      */
33     private String settingKey;
34     /**
35      * 参数值
36      */
37     private String settingValue;
38     /**
39      * 参数类型
40      */
41     private String valueType;
42     /**
43      * 排序
44      */
45     private Integer sort;
46 }