wjc
2023-06-28 975b91521a04e159f45fb34fc7b55afbf455f7f5
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
32
33
34
35
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;
    }
}