sgj
2026-03-05 8e4be3c0e5577fddae3ae30b0ca00f8b7a6c490e
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
package com.fzzy.igds.iot.analysis.message;
 
import lombok.Data;
 
/**
 * @Description 终端设备的属性信息
 * @Author CZT
 * @Date 2025/11/11 18:09
 */
@Data
public class IoMessage {
    private String orgId;
    private String groupId;
    private String iedId;
    private String functionId;
    private String deviceId;
    private String result;
    private String orderId;
    private String time;
    private String signHeader;
    private String len;
    private String content;
    private String signBody;
    private String file;//附件
    private byte[] fileBytes;
    private String sn;
    private String type;
    //2021年6月11日 12:13:00 添加
    private String sessionId;
}