cuikaidong
2025-06-12 44e283b774bb1168d0c17dfe5070a1ca8e2274cd
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
package org.jeecg.modules.iot.entity;
 
import lombok.Data;
 
import java.util.Map;
 
/**
 * 脚本编译实体
 */
@Data
public class ScriptCompilation {
 
    /**
     * 虚设备id
     */
    private String deviceId;
    /**
     * 参数类型
     */
    private String parameterDataType;
    /**
     * 参数名称
     */
    private String parameterName;
    /**
     * 脚本
     */
    private String parameterCode;
    /**
     * 参数
     */
    private Map<String, String> referenceinfo;
}