hxb
2023-06-28 531ba0d5bdc903c37e98128f04a85e0a146d23b7
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.bean;
 
import java.io.Serializable;
 
import androidx.annotation.NonNull;
 
/**
 * Created by Zoro
 * Created on 2022/7/29
 * description:
 */
public class NoticeConfigInfo implements Serializable {
    private boolean enable;
    private String noticeContent;
 
    public boolean isEnable() {
        return enable;
    }
 
    public void setEnable(@NonNull boolean enable) {
        this.enable = enable;
    }
 
    public String getNoticeContent() {
        return noticeContent == null ? "" : noticeContent;
    }
 
    public void setNoticeContent(@NonNull String noticeContent) {
        this.noticeContent = noticeContent;
    }
}