All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feingto.iot.common.model.mqtt.ImSpan Maven / Gradle / Ivy

There is a newer version: 2.3.3.RELEASE
Show newest version
package com.feingto.iot.common.model.mqtt;

import lombok.Data;
import lombok.experimental.Accessors;

import java.io.Serializable;

/**
 * MQTT 消息持久化实体
 *
 * @author longfei
 */
@Data
@Accessors(fluent = true)
public class ImSpan implements Serializable {
    private static final long serialVersionUID = 3663005494171602637L;

    private String id;

    private String topic;

    private String from;

    private String to;

    private String payload;

    private int status = 0;

    private long timestamp = System.currentTimeMillis();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy