vince
2024-03-01 f7178996ca77a1bccc941c0e7a73b36803e508cb
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
package com.fzzy.gateway.hx2023.data;
 
import com.alibaba.fastjson.JSONObject;
import lombok.Data;
 
 
/**
 * 粮情信息
 */
@Data
public class GrainData {
 
    //设备编码
    private String deviceId;
    private ClientHeaders headers;
    //消息 ID
    private String messageId;
 
    private String messageType = "INVOKE_FUNCTION_REPLY";
 
    private boolean success = true;
 
    private String timestamp;
 
    private String output;
 
    private String weatherStation;
 
    private JSONObject properties;
 
 
}