package com.qianwen.smartman.modules.notify.websocket;
|
|
import com.qianwen.core.websocket.message.AbstractJsonWebSocketMessage;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/websocket/InternalMessageResponseJsonWebSocketMessage.class */
|
public class InternalMessageResponseJsonWebSocketMessage extends AbstractJsonWebSocketMessage {
|
boolean haveUnread;
|
Integer notifyType;
|
public String notifySystemId;
|
|
public InternalMessageResponseJsonWebSocketMessage() {
|
super("internalMessageData");
|
}
|
|
public Integer getNotifyType() {
|
return this.notifyType;
|
}
|
|
public void setNotifyType(Integer notifyType) {
|
this.notifyType = notifyType;
|
}
|
|
public String getNotifySystemId() {
|
return this.notifySystemId;
|
}
|
|
public void setNotifySystemId(String notifySystemId) {
|
this.notifySystemId = notifySystemId;
|
}
|
|
public boolean isHaveUnread() {
|
return this.haveUnread;
|
}
|
|
public void setHaveUnread(boolean haveUnread) {
|
this.haveUnread = haveUnread;
|
}
|
}
|