wjc
2025-04-15 3b7a44351f3c961812ffa837302518646eae5b0d
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
36
package com.hdl.sdk.link.core.bean.eventbus;
 
import java.io.Serializable;
 
import androidx.annotation.NonNull;
 
/**
 * Created by Zoro
 * Created on 2021/5/24
 * description:
 */
public class EventIRCodeStudySuccessInfo implements Serializable {
    private String topic;
    private String content;
 
    public EventIRCodeStudySuccessInfo(String topic, String content) {
        this.topic = topic;
        this.content = content;
    }
 
    public String getTopic() {
        return topic == null ? "" : topic;
    }
 
    public void setTopic(@NonNull String topic) {
        this.topic = topic;
    }
 
    public String getContent() {
        return content == null ? "" : content;
    }
 
    public void setContent(@NonNull String content) {
        this.content = content;
    }
}