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;
|
}
|
}
|