潘志宝
2024-09-18 ca0e59e087685df4bd3dc117101ddbf85c53eed0
提交 | 用户 | 时间
0255ea 1 package com.iailab.module.model.mpk.dto;
D 2
3 import com.baomidou.mybatisplus.annotation.TableId;
4 import com.baomidou.mybatisplus.annotation.TableName;
5 import lombok.Data;
6
7 import java.io.Serializable;
8 import java.util.List;
9
10 /**
11  * @description: 方法参数关联表
12  * @author: dzd
13  * @date: 2024/9/13 15:49
14  **/
15 @Data
16 public class MethodSettingDTO implements Serializable {
17
18     /**
19      * id
20      */
21     private String id;
22
23     /**
24      * '方法id'
25      */
26     private String methodId;
27
28     /**
29      * key
30      */
31     private String settingKey;
32
33     /**
34      * 参数名称
35      */
36     private String name;
37
38     /**
39      * 参数默认值
40      */
41     private String value;
42
43     /**
44      * 输入类型
45      */
46     private String type;
47
48     /**
49      * 参数类型
50      */
51     private String valueType;
52
53     /**
54      * 最大值
55      */
56     private Integer max;
57
58     /**
59      * 最小值
60      */
61     private Integer min;
62
63     private List<SettingSelectDTO> settingSelects;
64 }