工业互联网平台2.0版本后端代码
潘志宝
2025-06-10 d070165d46a59762fa1ac65f38e3bd0cd7391da1
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
package com.iailab.module.mhub.mdk.vo;
 
import com.alibaba.excel.annotation.ExcelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * @description: 方法参数关联表
 * @author: dzd
 * @date: 2024/9/13 15:49
 **/
@Data
public class MdkModelSettingRespVO implements Serializable {
 
    @Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    @ExcelProperty("ID")
    private String id;
 
    @Schema(description = "方法id", example = "")
    private String methodId;
 
    @Schema(description = "key", example = "")
    private String settingKey;
 
    @Schema(description = "参数名称", example = "")
    private String name;
 
    @Schema(description = "参数默认值", example = "")
    private String value;
 
    @Schema(description = "输入类型", example = "")
    private String type;
 
    @Schema(description = "参数类型", example = "")
    private String valueType;
 
    @Schema(description = "最大值", example = "")
    private Integer max;
 
    @Schema(description = "最小值", example = "")
    private Integer min;
 
    @Schema(description = "参数值", example = "")
    private String settingValue;
 
    @Schema(description = "关联参数", example = "")
    private List<MdkSettingSelectRespVO> settingSelects;
}