package com.hdl.sdk.link.core.bean.eventbus;
|
|
public class BaseEventBus {
|
private String topic;
|
private String type;
|
private Object data;
|
|
public String getTopic() {
|
return topic == null ? "" : topic;
|
}
|
|
public void setTopic(String topic) {
|
this.topic = topic;
|
}
|
|
public String getType() {
|
return type == null ? "" : type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public Object getData() {
|
return data;
|
}
|
|
public void setData(Object data) {
|
this.data = data;
|
}
|
}
|