yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
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;
    }
}