package com.hdl.photovoltaic.bean; /** * 事件分发专用对象 */ 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; } }