潘志宝
2024-12-16 df99e46312fdd5ee830f1451e478f6658e09f9ed
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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;
 
    /**
     * 参数值
     */
    private String settingValue;
}