mac
2023-11-03 9e875b253959eff8f6af567308ad804fe69d0a62
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package com.hdl.linkpm.sdk.project.bean;
 
import java.io.Serializable;
 
/**
 * Created by Zoro
 * Created on 2021/6/8
 * description:
 */
public class PushNoticeInfo implements Serializable {
    private String notificationId;
    private String notificationContent;
    private String msgId;
    private String appkey;
    private String notificationAlertType;
    private String notificationTitle;
    private String notificationExtras;
 
    public String getNotificationId() {
        return notificationId == null ? "" : notificationId;
    }
 
    public void setNotificationId(String notificationId) {
        this.notificationId = notificationId;
    }
 
    public String getNotificationContent() {
        return notificationContent == null ? "" : notificationContent;
    }
 
    public void setNotificationContent(String notificationContent) {
        this.notificationContent = notificationContent;
    }
 
    public String getMsgId() {
        return msgId == null ? "" : msgId;
    }
 
    public void setMsgId(String msgId) {
        this.msgId = msgId;
    }
 
    public String getAppkey() {
        return appkey == null ? "" : appkey;
    }
 
    public void setAppkey(String appkey) {
        this.appkey = appkey;
    }
 
    public String getNotificationAlertType() {
        return notificationAlertType == null ? "" : notificationAlertType;
    }
 
    public void setNotificationAlertType(String notificationAlertType) {
        this.notificationAlertType = notificationAlertType;
    }
 
    public String getNotificationTitle() {
        return notificationTitle == null ? "" : notificationTitle;
    }
 
    public void setNotificationTitle(String notificationTitle) {
        this.notificationTitle = notificationTitle;
    }
 
    public String getNotificationExtras() {
        return notificationExtras;
    }
 
    public void setNotificationExtras(String notificationExtras) {
        this.notificationExtras = notificationExtras;
    }
}