smart-switch-java/smart-switch-service/src/main/java/com/ruoyi/iot/domain/ReceiveMsg.java
2024-05-06 18:06:58 +08:00

41 lines
766 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.ruoyi.iot.domain;
import com.alibaba.fastjson2.annotation.JSONField;
import lombok.Data;
/**
* @author wjh
* 2024/5/6
*/
@Data
public class ReceiveMsg {
// 类型 1数据点 2生命周期
private Integer type;
// 设备名称:mac
@JSONField(name = "dev_name")
private String devName;
// 设备上报的时间戳
private Long at;
// 产品id
@JSONField(name ="pid")
private String pid;
// 生命周期状态0离线1在线
private Integer status;
// 数据点id
@JSONField(name = "ds_id")
private String dsId;
// 具体数据部分,为设备上传至平台或触发的相关数据
private Object value;
// LwM2M协议设备的IMEI号
private String imei;
}