You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
301 B
21 lines
301 B
|
4 years ago
|
package cn.flyrise.iot.protocol.topic;
|
||
|
|
|
||
|
|
import lombok.AllArgsConstructor;
|
||
|
|
import lombok.Getter;
|
||
|
|
import lombok.Setter;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 消息实体
|
||
|
|
* @author zhangqiang
|
||
|
|
* @since 0.1
|
||
|
|
*/
|
||
|
|
@Getter
|
||
|
|
@Setter
|
||
|
|
@AllArgsConstructor
|
||
|
|
public class TopicMessage {
|
||
|
|
|
||
|
|
private String topic;
|
||
|
|
|
||
|
|
private Object message;
|
||
|
|
}
|