wjc
2024-12-23 f753d8366041354da60b8096060f3ab5159e3880
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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;
    }
}