xin
2025-04-15 8342e6a5ed78fc007c45609507f0a914c43fec4d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.oying.modules.maint.service.websocket;
 
import com.oying.modules.maint.domain.enums.MsgType;
import lombok.Data;
 
/**
 * @author Z
 * @date 2019-08-10 9:55
 */
@Data
public class SocketMsg {
    private String msg;
    private MsgType msgType;
 
    public SocketMsg(String msg, MsgType msgType) {
        this.msg = msg;
        this.msgType = msgType;
    }
}