dengzedong
9 天以前 f20e755c36d40d3474b6866b4f1b006cb128ef75
提交 | 用户 | 时间
0255ea 1 package com.iailab.module.model.mpk.entity;
D 2
3 import com.baomidou.mybatisplus.annotation.TableId;
4 import com.baomidou.mybatisplus.annotation.TableName;
5 import lombok.Data;
6 import org.checkerframework.checker.units.qual.min;
7
8 import java.io.Serializable;
9
10 /**
11  * @description: 方法参数关联表
12  * @author: dzd
13  * @date: 2024/9/13 15:49
14  **/
15 @Data
16 @TableName("t_mpk_method_setting")
17 public class MethodSettingEntity implements Serializable {
18
19     /**
20      * id
21      */
22     @TableId
23     private String id;
24
25     /**
26      * 方法id
27      */
28     private String methodId;
29
30     /**
31      * key
32      */
33     private String settingKey;
34
35     /**
36      * 参数名称
37      */
38     private String name;
39
40     /**
41      * 参数默认值
42      */
43     private String value;
44
45     /**
46      * 输入类型
47      */
48     private String type;
49
50     /**
51      * 参数类型
52      */
53     private String valueType;
54
55     /**
56      * 最大值
57      */
58     private Integer max;
59
60     /**
61      * 最小值
62      */
63     private Integer min;
8b3ee3 64
65     /**
66      * 排序
67      */
68     private Integer sort;
0255ea 69 }