ny
23 小时以前 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
package jnpf.visualdata.model.visualrecord;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 *
 *
 * @author JNPF开发平台组
 * @version V3.5.0
 * @copyright 引迈信息技术有限公司
 * @date 2023年7月7日
 */
@Data
public class VisualRecordCrForm {
 
 
    @Schema(description = "主键")
    private String id;
 
    @Schema(description = "名称")
    private String name;
 
    @Schema(description = "请求地址")
    private String url;
 
    @Schema(description = "数据集类型")
    private Integer dataType;
 
    @Schema(description = "请求方法")
    private String dataMethod;
 
    @Schema(description = "数据集类型")
    private String dataHeader;
 
    @Schema(description = "请求数据")
    private String data;
 
    @Schema(description = "请求参数")
    private String dataQuery;
 
    @Schema(description = "请求参数类型")
    private String dataQueryType;
 
    @Schema(description = "过滤器")
    private String dataFormatter;
 
    @Schema(description = "开启跨域")
    private Boolean proxy;
 
    @Schema(description = "WebSocket地址")
    private String wsUrl;
 
    @Schema(description = "数据集类型")
    private String dbsql;
 
    @Schema(description = "数据集类型")
    private String sql;
 
    @Schema(description = "MTQQ 连接地址")
    private String mqtturl;
 
    @Schema(description = "MQTT 配置")
    private String mqttConfig;
 
    @Schema(description = "数据集类型")
    private String result;
}