dengzedong
2025-02-27 3e61b6d86d6a98214e56c652a36a2290d471a695
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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;
}