1.0
xin
2025-04-15 719d2454c260d49cb9f92a1a73b31d98c1083d82
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;
    }
}