jiazx0107@163.com
2023-11-08 fc1e4c8264ee6c1c62653a5b181587ae0ac53077
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.fzzy.gateway.hx2023.data;
 
import com.fzzy.gateway.entity.GatewayDevice;
import lombok.Data;
 
@Data
public class SyncReqData {
 
    private String productId;
 
    private String deviceId;
 
    private String messageType;
 
    private String messageId;
 
    private String functionId;
 
    private String jsonData;
 
    private GatewayDevice device;
 
    private boolean autoReplay;
}